rebours/docker-compose.yml

15 lines
262 B
YAML

services:
postgres:
image: postgres:16-alpine
ports:
- "5432:5432"
environment:
POSTGRES_DB: rebours
POSTGRES_USER: rebours
POSTGRES_PASSWORD: rebours
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: