docker create postgres db

Solutions on MaxInterview for docker create postgres db by the best coders in the world

showing results for - "docker create postgres db"
Kenan
01 Jan 2018
1$ docker run --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword -p 5432:5432 -d postgres
Montserrat
22 Apr 2018
1# inside Dockerfile
2COPY your_sql_file.sql /docker-entrypoint-initdb.d/
similar questions
queries leading to this page
docker create postgres db