如何在一个Docker容器中运行python应用程序和postgres?

时间:2019-01-16 21:06:44

标签: postgresql docker

我有一个与postgresql数据库交互的python应用程序,我需要在一个docker容器中运行所有程序。 运行容器时出现连接错误:

  ...

  File "/usr/lib/python3.6/asyncio/tasks.py", line 358, in wait_for
    return fut.result()
  File "/usr/lib/python3.6/asyncio/base_events.py", line 787, in create_connection
    ', '.join(str(exc) for exc in exceptions)))
OSError: Multiple exceptions: [Errno 111] Connect call failed ('::1', 5432), [Errno 111] Connect call failed ('127.0.0.1', 5432)

我的 Dockerfile

FROM postgres:10.0-alpine
RUN apk add --update --no-cache g++ alpine-sdk
RUN apk --no-cache add python3-dev
RUN apk add --no-cache python3 && \
    python3 -m ensurepip && \
    rm -r /usr/lib/python*/ensurepip && \
    pip3 install --upgrade pip setuptools && \
    if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi && \
    if [[ ! -e /usr/bin/python ]]; then ln -sf /usr/bin/python3 /usr/bin/python; fi && \
    rm -r /root/.cache    
ADD app /app/   
RUN chmod -R 777 /app 
WORKDIR /app
ADD requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
USER postgres
RUN chmod 0700 /var/lib/postgresql/data &&\
    initdb /var/lib/postgresql/data &&\
    echo "host all  all    0.0.0.0/0  md5" >> /var/lib/postgresql/data/pg_hba.conf &&\
    echo "listen_addresses='*'" >> /var/lib/postgresql/data/postgresql.conf &&\
    pg_ctl start &&\
    psql --command "ALTER USER postgres WITH ENCRYPTED PASSWORD 'postgres';"
EXPOSE 5432
EXPOSE 80
CMD ["python3", "main.py"]

2 个答案:

答案 0 :(得分:0)

@Anton,不建议在docker容器中运行多个进程。看看此链接https://docs.docker.com/config/containers/multi-service_container/,它将进一步说明并演示实现此目的的方式。您可能已经知道,但是您的容器将运行postgresql实例并在其中包含数据,因此,如果您重新创建该容器,则将丢失该容器中的任何数据。

答案 1 :(得分:0)

尽管不建议这样做,但这是可行的。问题是pg_ctl中的RUN是在构建时而不是在容器中执行的。您需要使用CMD来运行它。

您可以使用类似的脚本

pg_ctl start
psql --command "ALTER USER postgres WITH ENCRYPTED PASSWORD 'postgres';"
python3 main.py

COPY图像中和dockerfile末尾脚本“ CMD [“ ./script.sh”]