Docker 不是 运行 入口点 .sh 脚本
Docker not running entrypoint .sh script
我正在尝试构建一个 docker-compose 来设置一个 postgres 数据库,其中包含一个在其中创建一些表的初始脚本。
我有这个docker-compose.yml
version: '3.9'
services:
postgres:
image: postgres:12.7
#restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
logging:
options:
max-size: 10m
max-file: "3"
ports:
- '5438:5432'
volumes:
- ./postgres-data:/var/lib/postgresql/data
# copy the sql script to create tables
#- ./sql/create_tables.sql:/docker-entrypoint-initdb.d/create_tables.sql
- ./sql/create_tables.sh:/docker-entrypoint-initdb.d/create_tables.sh
这是 create_tables.sh
:
#!/bin/bash
echo Start Executing SQL commands
psql -U postgres -f create_tables.sql
以及错误日志:
postgres_1 | psql: error: create_tables.sql: No such file or directory
取消注释行 - ./sql/create_tables.sql:/docker-entrypoint-initdb.d/create_tables.sql
并注释行 - ./sql/create_tables.sh:/docker-entrypoint-initdb.d/create_tables.sh
使其工作,但我必须使用 .sh.
我的docker文件:
FROM postgres:12.7
#WORKDIR ./sql/
ADD ./sql/create_tables.sql ./docker-entrypoint-initdb.d/create_tables.sql
ADD ./sql/create_tables.sh ./docker-entrypoint-initdb.d/create_tables.sh
RUN ./docker-entrypoint-initdb.d/create_tables.sh
知道我做错了什么吗?谢谢!!
您只需使用下面的脚本,在卷步骤中指向您的“.SQL”文件夹。
它将自动创建数据库并执行此文件夹中的每个 SQL 文件。您不需要单独的 .sh 文件来 migrate/create/execute 您的 SQL 命令使用 docker-compose 和正确的音量命令。
version: '3.9'
services:
postgres:
image: postgres:12.7
#restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
logging:
options:
max-size: 10m
max-file: "3"
ports:
- '5438:5432'
volumes:
- ./postgres-data:/var/lib/postgresql/data
# copy the sql script to create tables
#- ./sql/create_tables.sql:/docker-entrypoint-initdb.d/create_tables.sql
#- ./sql/create_tables.sh:/docker-entrypoint-initdb.d/create_tables.sh
- ./sql:/docker-entrypoint-initdb.d #put all .SQL files inside sql/ folder and all files will be executed.
最后我将一个 sql 文件夹和一个 sh 文件夹分开,它起作用了,但正确的方法是保罗的回答。
- ./db-init-scripts/create_tables.sh:/docker-entrypoint-initdb.d/init.sh
- ./sql:/sql
我正在尝试构建一个 docker-compose 来设置一个 postgres 数据库,其中包含一个在其中创建一些表的初始脚本。
我有这个docker-compose.yml
version: '3.9'
services:
postgres:
image: postgres:12.7
#restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
logging:
options:
max-size: 10m
max-file: "3"
ports:
- '5438:5432'
volumes:
- ./postgres-data:/var/lib/postgresql/data
# copy the sql script to create tables
#- ./sql/create_tables.sql:/docker-entrypoint-initdb.d/create_tables.sql
- ./sql/create_tables.sh:/docker-entrypoint-initdb.d/create_tables.sh
这是 create_tables.sh
:
#!/bin/bash
echo Start Executing SQL commands
psql -U postgres -f create_tables.sql
以及错误日志:
postgres_1 | psql: error: create_tables.sql: No such file or directory
取消注释行 - ./sql/create_tables.sql:/docker-entrypoint-initdb.d/create_tables.sql
并注释行 - ./sql/create_tables.sh:/docker-entrypoint-initdb.d/create_tables.sh
使其工作,但我必须使用 .sh.
我的docker文件:
FROM postgres:12.7
#WORKDIR ./sql/
ADD ./sql/create_tables.sql ./docker-entrypoint-initdb.d/create_tables.sql
ADD ./sql/create_tables.sh ./docker-entrypoint-initdb.d/create_tables.sh
RUN ./docker-entrypoint-initdb.d/create_tables.sh
知道我做错了什么吗?谢谢!!
您只需使用下面的脚本,在卷步骤中指向您的“.SQL”文件夹。 它将自动创建数据库并执行此文件夹中的每个 SQL 文件。您不需要单独的 .sh 文件来 migrate/create/execute 您的 SQL 命令使用 docker-compose 和正确的音量命令。
version: '3.9'
services:
postgres:
image: postgres:12.7
#restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
logging:
options:
max-size: 10m
max-file: "3"
ports:
- '5438:5432'
volumes:
- ./postgres-data:/var/lib/postgresql/data
# copy the sql script to create tables
#- ./sql/create_tables.sql:/docker-entrypoint-initdb.d/create_tables.sql
#- ./sql/create_tables.sh:/docker-entrypoint-initdb.d/create_tables.sh
- ./sql:/docker-entrypoint-initdb.d #put all .SQL files inside sql/ folder and all files will be executed.
最后我将一个 sql 文件夹和一个 sh 文件夹分开,它起作用了,但正确的方法是保罗的回答。
- ./db-init-scripts/create_tables.sh:/docker-entrypoint-initdb.d/init.sh
- ./sql:/sql