When I use the postgres docker image, I run
docker run --name mydb -e POSTGRES_PASSWORD=password -d postgres
And I see a container running.
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
a36b98h8982a postgres "docker-entrypoint.s…" 36 minutes ago Up 36 minutes 5432/tcp mydb
So I make my Dockerfile because I want to initialize my database
FROM postgres:latest
COPY pg-setup.sql /docker-entrypoint-initdb.d/
CMD ['postgres']
But when I use the Dockerfile the container just exits immediately. How do I get it to run like the postgres image?
If your SQL file pg-setup.sql is no problem, you can just change your Dockerfile like this:
FROM postgres:latest
COPY pg-setup.sql /docker-entrypoint-initdb.d/
Take a look at another case. It will be helpful.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With