Docker container for Postgres.
The Postgres Database. Sets up a database named POSTGRES_DB
, with owner POSTGRES_USER
.
pg:
image: impactbot/impact-platform-pg
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=mypassword
- POSTGRES_USER=myuser
- POSTGRES_DB=mydb
- POSTGRES_INITDB_ARGS="--my-db-arg=value --another-arg=anothervalue"