Shelf/docker-compose.yml
2022-05-19 02:18:33 +02:00

16 lines
196 B
YAML

version: '3.9'
services:
postgres:
image: postgres
ports:
- '5432:5432'
env_file:
- .env
volumes:
- 'postgres:/var/lib/postgresql/data'
volumes:
postgres: