authelia/internal/suites/example/compose/postgres/docker-compose.yml

12 lines
196 B
YAML

---
services:
postgres:
image: postgres:17
environment:
- POSTGRES_PASSWORD=password
- POSTGRES_USER=admin
- POSTGRES_DB=authelia
networks:
- authelianet
...