我正在尝试运行以下docker-compose
文件:
version: "3"
services:
db:
image: postgres
container_name: pgsql
environment:
- foo=foo
- bar=bar
volumes:
- ./sql/:/opt/sql
command: bash /opt/sql/create-db.sql
# command: ps -aux
web:
image: benit/debian-web
container_name: web
depends_on:
- db
ports:
- 80:80
volumes:
- ./html:/var/www/html
我在以下行遇到错误:
command: bash /opt/sql/create-db.sql
这是因为pgsql服务未启动。可以使用command: ps -aux
启动pgsql服务后如何运行脚本?
答案 0 :(得分:0)
您可以使用卷来提供初始化sql脚本:
version: "3"
services:
db:
image: postgres
container_name: pgsql
environment:
- foo=foo
- bar=bar
volumes:
- ./sql/:/opt/sql
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
web:
image: benit/debian-web
container_name: web
depends_on:
- db
ports:
- 80:80
volumes:
- ./html:/var/www/html
这将起作用,因为原始Posgresql dockerfile包含一个脚本(在Posrgres启动后运行),该脚本将执行*.sql
文件夹中的所有/docker-entrypoint-initdb.d/
文件。
通过在该位置安装本地卷,您的sql文件将在正确的时间运行。
在该图片的文档中实际上提到了该图片:How to extend this image
下的https://hub.docker.com/_/postgres。