Ruby on rails Docker:在Rails应用程序中建立PostgreSQL连接的问题

Ruby on rails Docker:在Rails应用程序中建立PostgreSQL连接的问题,ruby-on-rails,postgresql,docker,dockerfile,Ruby On Rails,Postgresql,Docker,Dockerfile,我已经研究了几天了,我终于决定寻求帮助。我正在尝试使用非常流行的作为我的基础映像来创建一个运行Rails应用程序的简单Docker映像。问题在于建立到PostgreSQL数据库的连接 这是我的数据库.yml文件: default: &default adapter: postgresql pool: 5 user: pguser password: pguser timeout: 5000 host: localhost encoding: utf8 po

我已经研究了几天了,我终于决定寻求帮助。我正在尝试使用非常流行的作为我的基础映像来创建一个运行Rails应用程序的简单Docker映像。问题在于建立到PostgreSQL数据库的连接

这是我的
数据库.yml
文件:

default: &default
  adapter: postgresql
  pool: 5
  user: pguser
  password: pguser
  timeout: 5000
  host: localhost
  encoding: utf8
  port: 5432

production:
  <<: *default
  database: myapp_production
然后,当我在我的应用程序目录中运行
docker run.
时,我得到以下错误:

无法连接到服务器:连接被拒绝 服务器是否在主机“localhost”(127.0.0.1)上运行并接受 端口5432上的TCP/IP连接


那么我应该跨容器访问数据库吗?Postgres在一个容器中,Rails应用程序在第二个容器中?是的,这非常简单。实际上,在postgres图片页面上有一些例子正在研究这个问题,听起来是一个不错的解决方案(+解耦)。我很快会给你回信的。感谢到目前为止的支持,非常感谢。好的,让Postgres容器运行起来,我现在如何将我的数据库迁移到那个位置?我知道我需要将应用程序容器链接到postgres容器,但是是什么让应用程序容器知道使用postgres容器作为存储?没关系。但是如果我的建议不完全是解决方案,你可以自己写一个答案,这样将来可能会对人们有所帮助。只要您确认我的输入,我就很高兴。那么我应该跨容器访问数据库吗?Postgres在一个容器中,Rails应用程序在第二个容器中?是的,这非常简单。实际上,在postgres图片页面上有一些例子正在研究这个问题,听起来是一个不错的解决方案(+解耦)。我很快会给你回信的。感谢到目前为止的支持,非常感谢。好的,让Postgres容器运行起来,我现在如何将我的数据库迁移到那个位置?我知道我需要将应用程序容器链接到postgres容器,但是是什么让应用程序容器知道使用postgres容器作为存储?没关系。但是如果我的建议不完全是解决方案,你可以自己写一个答案,这样将来可能会对人们有所帮助。我很高兴,只要你承认我的意见。
# Use phusion/passenger-full as base image. To make your builds reproducible, make
# sure you lock down to a specific version, not to `latest`!
# See https://github.com/phusion/passenger-docker/blob/master/Changelog.md for
# a list of version numbers.
FROM phusion/passenger-full:0.9.18

# Set correct environment variables.
ENV HOME /root

# Use baseimage-docker's init process.
CMD ["/sbin/my_init"]

# ...put your own build instructions here...

RUN rm -f /etc/service/nginx/down

# Expose Nginx HTTP service
EXPOSE 80

# Remove the default site
RUN rm /etc/nginx/sites-enabled/default

# Add the nginx site and config
ADD myapp.conf /etc/nginx/sites-enabled/myapp.conf
ADD rails-env.conf /etc/nginx/main.d/rails-env.conf

###### Andrea Grandi https://github.com/andreagrandi/postgresql-docker/blob/master/Dockerfile ######

# Add the PostgreSQL PGP key to verify their Debian packages.
# It should be the same key as https://www.postgresql.org/media/keys/ACCC4CF8.asc
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8

# Add PostgreSQL's repository. It contains the most recent stable release
#     of PostgreSQL, ``9.3``.
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc/apt/sources.list.d/pgdg.list

# Update the Ubuntu and PostgreSQL repository indexes and install ``python-software-properties``,
# ``software-properties-common`` and PostgreSQL 9.3
# There are some warnings (in red) that show up during the build. You can hide
# them by prefixing each apt-get statement with DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -y -q install python-software-properties software-properties-common \
    && apt-get -y -q install postgresql-9.3 postgresql-client-9.3 postgresql-contrib-9.3

USER postgres

RUN /etc/init.d/postgresql start \
    && psql --command "CREATE USER pguser WITH SUPERUSER PASSWORD 'pguser';" \
    && createdb -O pguser myapp_production

USER root

# Adjust PostgreSQL configuration so that remote connections to the
# database are possible.
RUN echo "host all  all    0.0.0.0/0  md5" >> /etc/postgresql/9.3/main/pg_hba.conf

# And add ``listen_addresses`` to ``/etc/postgresql/9.3/main/postgresql.conf``
RUN echo "listen_addresses='*'" >> /etc/postgresql/9.3/main/postgresql.conf

# Expose the PostgreSQL port
EXPOSE 5432

RUN mkdir -p /var/run/postgresql && chown -R postgres /var/run/postgresql

# Add VOLUMEs to allow backup of config, logs and databases
VOLUME  ["/etc/postgresql", "/var/log/postgresql", "/var/lib/postgresql"]

USER postgres

# Set the default command to run when starting the container
CMD ["/usr/lib/postgresql/9.3/bin/postgres", "-D", "/var/lib/postgresql/9.3/main", "-c", "config_file=/etc/postgresql/9.3/main/postgresql.conf"]

###### /Andrea Grandi https://github.com/andreagrandi/postgresql-docker/blob/master/Dockerfile ######

USER root

# Add the Rails app
RUN mkdir /home/app/MyApp
WORKDIR /home/app/MyApp
ADD . /home/app/MyApp
RUN chown -R app:app /home/app/MyApp

# Install bundle of gems
RUN apt-get install pkg-config
RUN apt-get install libgmp-dev
RUN bundle config build.nokogiri --use-system-libraries
RUN bundle install

# run migrations
RUN RAILS_ENV=production rake db:migrate --trace
RUN rake db:seed

#enable memcached
#RUN rm -f /etc/service/memcached/down

# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*