Files
garage_appointment/docker-compose.yml
2024-09-04 19:02:18 +02:00

13 lines
260 B
YAML

version: '2'
services:
db:
image: postgres:11-alpine
ports:
- "5432:5432"
environment:
- "POSTGRES_DB=etecture"
- "POSTGRES_USER=etecture"
- "POSTGRES_PASSWORD=etecture"
- "PGDATA=/var/lib/postgresql/data/etecture"