MyINPulse/postgres/Dockerfile
Pierre Tellier eed4e6f855
All checks were successful
CI / build (push) Successful in 11s
feat: multiple database and user in postgres
2025-02-11 11:07:45 +01:00

6 lines
192 B
Docker

FROM postgres:latest
# Custom initialization scripts
COPY ./create_user.sh /docker-entrypoint-initdb.d/10-create_user.sh
COPY ./create_db.sh /docker-entrypoint-initdb.d/20-create_db.sh