1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-26 00:38:37 +00:00
dockerfiles/postgres/docker-compose.yml

12 lines
244 B
YAML
Raw Normal View History

2016-12-07 01:35:42 +00:00
postgres:
2021-08-24 06:53:36 +00:00
image: postgres:13-alpine
2016-12-07 01:35:42 +00:00
ports:
- "5432:5432"
volumes:
- ./data:/var/lib/postgresql/data
environment:
2020-10-22 06:41:34 +00:00
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
2016-12-07 01:35:42 +00:00
- POSTGRES_DB=postgres
2020-10-22 06:41:34 +00:00
restart: unless-stopped