如何从Docker访问我的本地系统Postgres

时间:2016-09-06 06:53:11

标签: ruby-on-rails ruby postgresql docker

当我在自己的机器上使用Docker时,我想访问我的系统的Postgres。这是在将我的图像部署到AWS之前,我想使用RDS。

我已经按照Docker's Quickstart: Docker Compose and Rails page上的步骤进行了操作,但由于我正在使用现有的应用程序,因此我没有创建只加载Rails的初始最小Gemfile。

在Docker容器之外,Postgres已安装且工作正常:

$ which postgres
/Applications/Postgres.app/Contents/Versions/latest/bin/postgres
$ which pg_restore
/Applications/Postgres.app/Contents/Versions/latest/bin/pg_restore
$ which pg_dump
/Applications/Postgres.app/Contents/Versions/latest/bin/pg_dump

多年来,该应用程序在没有Docker的情况下运行良好。为了再次测试Docker容器之外的应用程序,我将注释掉一行Docker推荐的docker-compose.yml文件,如下所示:

development: &default
  adapter: postgresql
  encoding: unicode
  database: postgres
  pool: 5
  username: postgres
  password:
  # host: db

test:
  <<: *default
  database: myapp_test

当我这样做时,我可以在容器外运行rake db:test:clone(例如),不用担心:

但是当我取消注释该行并连接到容器中的TTY时,我会遇到各种各样的痛苦:

/myapp# rake db:test:clone                                          
pg_dump -s -x -O -f /myapp/db/structure.sql postgres
Please check the output above for any errors and make sure that `pg_dump` is installed in your PATH and has proper permissions.
/myapp# which postgres
/myapp# which pg_restore
/myapp# which pg_dump
/myapp# 

我该怎么办?

Dockerfile基于Docker的说明,以及我现有应用程序所需的一些额外二进制文件:

FROM ruby:2.3.1-slim

RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-get update
RUN apt-get install -qq -y --no-install-recommends --fix-missing apt-utils
RUN apt-get install -qq -y --no-install-recommends --fix-missing build-essential
RUN apt-get install -qq -y --no-install-recommends --fix-missing git
RUN apt-get install -qq -y --no-install-recommends --fix-missing xvfb
RUN apt-get install -qq -y --no-install-recommends --fix-missing qt5-default
RUN apt-get install -qq -y --no-install-recommends --fix-missing libqt5webkit5-dev
RUN apt-get install -qq -y --no-install-recommends --fix-missing gstreamer1.0-plugins-base
RUN apt-get install -qq -y --no-install-recommends --fix-missing gstreamer1.0-tools
RUN apt-get install -qq -y --no-install-recommends --fix-missing gstreamer1.0-x
RUN apt-get install -qq -y --no-install-recommends --fix-missing nodejs
RUN apt-get install -qq -y --no-install-recommends --fix-missing libpq-dev

RUN mkdir /myapp
WORKDIR /myapp

ADD Gemfile /myapp/Gemfile
ADD Gemfile.lock /myapp/Gemfile.lock
RUN bundle install

ADD . /myapp

相关:我可以在容器外看到redis-cli但不在其中。一旦我解决了Postgres的情况,这也是一个问题。

更新

当我这样进去的时候......

docker-compose run web rake db:create
docker-compose run web rake db:test:clone

...我似乎可以访问Postgres,但不能pg_dump以及rake db:test:clonerake db:test:load或类似内容所需的其他工具。

更新II

我在Dockerfile中添加了以下内容:

RUN apt-get install -qq -y --no-install-recommends --fix-missing postgresql-client

现在,它没有给我一个“无法找到”错误,而是说:

pg_dump: server version: 9.5.4; pg_dump version: 9.4.9
pg_dump: aborting because of server version mismatch

这是一个你可以在其他地方讨论过的问题,但不是在Docker的背景下,这在这里至关重要。

如果我将Mac的Postgres降级为apt-get提取的版本,会有帮助吗?升级apt-get安装的版本似乎不是一个选项:

Step 15 : RUN apt-get install -qq -y --no-install-recommends --fix-missing postgresql-client-9.5
 ---> Running in 614b88701710
E: Unable to locate package postgresql-client-9.5
E: Couldn't find any package by regex 'postgresql-client-9.5'

1 个答案:

答案 0 :(得分:2)

这不是“你做错了”,这很棘手。我浏览了你链接的码头工程介绍,我无法让它工作。

这是我为我们的应用做的。我用应用程序命名的基本映像构建了我们的应用程序。基本图像以app命名。因此,使用您的示例,它将被称为myapp_base。我没有在这里看到你的docker-compose.yml文件,所以我会做一些假设。

web: image: your_company/myapp_base links: - db volumes: - .:/myapp # ports: # - "3002:3002" # env_file: # - .myapp.env

不需要端口和env_file,但它们可能会在以后派上用场。 Myapp_base是使用一个奇怪的工作流程构建的,如果声明应用程序需要postgres,则会提取deps但基本上会引入postgres-client。这是厨师,但它基本上是myapp runlist needs postgresql。我们实际上正在远离这个并尝试将设置内容放在脚本和Dockerfile本身中。

所以...基本上只需将apt-get install postgres-client添加到您的Dockerfile,将其标记为myapp_base并在docker-compose.yml文件中使用它。然后运行docker-compose run web rake db的东西,找到psql。