Files
es-bot/docker-compose.yml
Andrey Gumirov 911c1f3400 Initial
2022-04-29 20:11:54 +07:00

15 lines
335 B
YAML

version: "2"
services:
pgdb:
image: 'postgres:12'
restart: always
environment:
- POSTGRES_USER=${PG_USER}
- POSTGRES_PASSWORD=${PG_PASS}
- POSTGRES_DB=db
- PGDATA=/var/lib/postgresql/data/pgdata
# volumes:
# - ${PG_MNT}:/var/lib/postgresql/data
ports:
- ${PG_OUTBOUND_PORT}:5432