1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/postgres/arm/docker-compose.yml

12 lines
252 B
YAML
Raw Normal View History

2017-11-01 13:35:27 +00:00
postgres:
2021-08-24 06:53:36 +00:00
image: arm32v7/postgres:13-alpine
2017-11-01 13:35:27 +00:00
ports:
- "5432:5432"
volumes:
- ./data:/var/lib/postgresql/data
environment:
2021-08-24 06:53:36 +00:00
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
2017-11-01 13:35:27 +00:00
- POSTGRES_DB=postgres
2021-08-24 06:53:36 +00:00
restart: unless-stopped