gpt4 book ai didi

ruby-on-rails - 如何从 Docker 访问我的本地系统 Postgres

转载 作者:数据小太阳 更新时间:2023-10-29 08:59:44 25 4
gpt4 key购买 nike

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

我已按照 Docker's Quickstart: Docker Compose and Rails page 上的步骤操作异常(exception)情况是,因为我正在使用现有的应用程序,所以我没有创建仅加载 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_dumprake db:test:clone 所需的其他实用程序,rake db:test:加载或类似的。

更新二

我在 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 的上下文中,而 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'

最佳答案

这不是“你做错了”,这很棘手。我浏览了您链接的 docker intro,但无法正常工作。

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


网页:
图片:your_company/myapp_base
链接:
- D b
卷:
- .:/我的应用程序
#端口:
# - “3002:3002”
# 环境文件:
# - .myapp.env

Port 和 env_file 不是必需的,但它们稍后可能会派上用场。 Myapp_base 是用一个奇怪的工作流程构建的,它会引入 dep,但如果应用被声明需要 postgres,则基本上会抛出 postgres-client。它在 Chef 中,但它基本上是 myapp runlist needs postgresql。我们实际上正在远离这一点,并尝试将设置内容放在脚本和 Dockerfile 本身中。

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

关于ruby-on-rails - 如何从 Docker 访问我的本地系统 Postgres,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39342369/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com