我在开发环境中有一个带有 mongodb 的 rails 应用程序。无法将 mongodb 与 docker 连接。可以使用相同的 mongoid 配置连接到本地 mongodb。我尝试将主机作为 localhost 更改为 0.0.0.0 但没有奏效。设置中缺少什么?
我的疑问是 Docker 中的 mongo 尚未启动或绑定。如果我在 mongoid 配置中进行更改以读取::最近,它说没有找到节点。
错误消息是,Moped::Errors::ConnectionFailure in Product#index
无法连接到副本集的主节点#]>
Dockerfile
#FROM ruby:2.2.1-slim
FROM rails:4.2.1
MAINTAINER Sandesh Soni, <my@email.com>
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev
RUN mkdir /gmv
WORKDIR /gmv
# Add db directory to /db
ADD Gemfile /gmv/Gemfile
RUN bundle install
ADD ./database /data/db
ADD . /gmv
码头工人-compose.yml
web:
build: .
command: bundle exec rails s -p 3000 -b '0.0.0.0'
volumes:
- .:/gmv
ports:
- "3000:3000"
links:
- db
db:
image: mongo
command: "--smallfiles --bind_ip 0.0.0.0 --port 27027 -v"
volumes:
- data/mongodb:/data/db
ports:
- "27017:27017"