如何在 Postgres Dockerfile 中正确设置 VOLUME 和 CMD 指令?
How to properly set VOLUME and CMD instructions in Postgres Dockerfile?
我有一个正在修改的 Postgres Docker 文件,不幸的是,在应用修改后,Postgres 容器停止按预期工作。我想请你解释我做错了什么。
工作示例
这是我修改过的 Postgres Docker 文件:
# Use ubuntu image
FROM ubuntu
# Install database
RUN apt-get update && apt-get install -y postgresql-9.3
# Switch to postgres user.
USER postgres
# Create databse and user with all privileges to the database.
RUN /etc/init.d/postgresql start && \
psql --command "CREATE DATABASE docker;" && \
psql --command "CREATE USER docker WITH SUPERUSER PASSWORD 'docker';" &&\
psql --command "GRANT ALL PRIVILEGES ON DATABASE docker TO docker;"
# Allow remote connections to the database.
RUN echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/9.3/main/pg_hba.conf
RUN echo "listen_addresses='*'" >> /etc/postgresql/9.3/main/postgresql.conf
# Add VOLUMEs to allow backup of config, logs and databases
VOLUME ["/etc/postgresql", "/var/log/postgresql", "/var/lib/postgresql"]
# 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"]
我是这样建造的:
docker build --tag postgres-image .
然后我创建一个容器:
docker run -d -it -p 32768:5432 --name=postgres postgres-image
然后我连接到数据库:
psql -h localhost -p 32768 -d docker -U docker --password
第一次修改
我不需要任何卷,因为我将使用将存储所有 Postgres 数据的纯数据容器。当我删除该行时:
VOLUME ["/etc/postgresql", "/var/log/postgresql", "/var/lib/postgresql"]
并像工作示例中那样执行所有步骤我在最后一步传递密码后收到以下错误:
psql: FATAL: the database system is starting up
FATAL: the database system is starting up
所以问题是:为什么 Docker 文件中需要 VOLUME 指令?
二次修改
这次修改不包括第一个。两个修改都是独立的。
CMD 指令中使用的参数指向默认的 Postgres 数据目录和配置文件,因此我想通过将 CMD 设置为我经常用来启动 Posgres 的命令来简化它:
service postgres start
将CMD设置为:
后
CMD ["service", "postgres", "start]
并像工作示例中那样执行所有步骤,在最后一步传递密码后出现以下错误:
psql: could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 32768?
问题是:为什么在我的主机系统上运行的命令在 Docker 容器中不起作用?
第一个问题我不太确定。 可能 是 Postgres 不喜欢 运行 在 UFS 之上。
第二个问题就是当主进程结束时容器会退出。所以命令 "service postgres start" 运行,在后台启动 Postgres,然后立即退出,容器停止。第一个版本有效,因为 Postgres 保持 运行 在前台。
但是你为什么要这样做?为什么不直接使用 official Postgres image?
我有一个正在修改的 Postgres Docker 文件,不幸的是,在应用修改后,Postgres 容器停止按预期工作。我想请你解释我做错了什么。
工作示例
这是我修改过的 Postgres Docker 文件:
# Use ubuntu image
FROM ubuntu
# Install database
RUN apt-get update && apt-get install -y postgresql-9.3
# Switch to postgres user.
USER postgres
# Create databse and user with all privileges to the database.
RUN /etc/init.d/postgresql start && \
psql --command "CREATE DATABASE docker;" && \
psql --command "CREATE USER docker WITH SUPERUSER PASSWORD 'docker';" &&\
psql --command "GRANT ALL PRIVILEGES ON DATABASE docker TO docker;"
# Allow remote connections to the database.
RUN echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/9.3/main/pg_hba.conf
RUN echo "listen_addresses='*'" >> /etc/postgresql/9.3/main/postgresql.conf
# Add VOLUMEs to allow backup of config, logs and databases
VOLUME ["/etc/postgresql", "/var/log/postgresql", "/var/lib/postgresql"]
# 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"]
我是这样建造的:
docker build --tag postgres-image .
然后我创建一个容器:
docker run -d -it -p 32768:5432 --name=postgres postgres-image
然后我连接到数据库:
psql -h localhost -p 32768 -d docker -U docker --password
第一次修改
我不需要任何卷,因为我将使用将存储所有 Postgres 数据的纯数据容器。当我删除该行时:
VOLUME ["/etc/postgresql", "/var/log/postgresql", "/var/lib/postgresql"]
并像工作示例中那样执行所有步骤我在最后一步传递密码后收到以下错误:
psql: FATAL: the database system is starting up
FATAL: the database system is starting up
所以问题是:为什么 Docker 文件中需要 VOLUME 指令?
二次修改
这次修改不包括第一个。两个修改都是独立的。
CMD 指令中使用的参数指向默认的 Postgres 数据目录和配置文件,因此我想通过将 CMD 设置为我经常用来启动 Posgres 的命令来简化它:
service postgres start
将CMD设置为:
后CMD ["service", "postgres", "start]
并像工作示例中那样执行所有步骤,在最后一步传递密码后出现以下错误:
psql: could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 32768?
问题是:为什么在我的主机系统上运行的命令在 Docker 容器中不起作用?
第一个问题我不太确定。 可能 是 Postgres 不喜欢 运行 在 UFS 之上。
第二个问题就是当主进程结束时容器会退出。所以命令 "service postgres start" 运行,在后台启动 Postgres,然后立即退出,容器停止。第一个版本有效,因为 Postgres 保持 运行 在前台。
但是你为什么要这样做?为什么不直接使用 official Postgres image?