我正在用3个码头工程建造一个项目。
所以我有docker-compose
来处理所有事情。
我的问题是当我想要为我的数据库播种时,我有一个错误:
Mongo::Error::NoServerAvailable: No server is available matching preference: #<Mongo::ServerSelector::Primary:0x47121755943460 tag_sets=[] server_selection_timeout=30 local_threshold=0.015>
我尝试了很多东西,我目前正在OSX上使用测试版本的Docker原生。
version: '2'
services:
web:
build: web/
ports:
- "80:8080"
links:
- api
depends_on:
- api
volumes:
- ./web:/app
api:
build: api/
command: rails s -p 3000 -b '0.0.0.0'
volumes:
- ./api:/app
- ./api:/app/tmp/pids
links:
- db
#depends_on:
#- db
ports:
- "3000:3000"
environment:
RAILS_ENV: development
db:
image: mongo:3.2
ports:
- 27017:27017
我的种子.rb
require 'csv'
file = File.read("db/data.csv")
csv = CSV.parse(file, :headers => false, :col_sep => ";")
csv.each do |row|
Datum.create(
:country_code => row[0],
:country => row[1]
)
end
我的mongoid.yml我使用localhost是正常的,因为测试版本是在localhost上。当我尝试使用docker-machine时,我将其更改为docker ip。
development:
clients:
default:
database: api_development
hosts:
- localhost:27017
options:
options:
test:
clients:
default:
database: api_test
hosts:
- localhost:27017
options:
read:
mode: :primary
max_pool_size: 1
我的docker-compose up -d
尝试使用docker-compose run api rake db:seed
所有容器都在运行,我可以从我的导航器访问它而没有任何问题。
当我卸载docker native并使用boot2docker时,它正在运行。
有没有人知道问题出在哪里?
答案 0 :(得分:0)
您需要使用
- db:27017
在mongoid.yml
的主机配置中,其中&#34; db&#34;是docker-compose.yml
中的mongo服务的名称。