asimio/postgres
Asimio Tech Postgres Docker Image that initially creates Role and DB if they don't exist
1.6K
docker run -d -e DB_NAME=db_dvdrental -e DB_USER=user_dvdrental -e DB_PASSWD=changeit asimio/postgres
FROM asimio/postgres
RUN mkdir -p /docker-entrypoint-initdb.d
ADD sql/dvdrental.tar /docker-entrypoint-initdb.d/
docker pull asimio/postgres