authelia/internal/suites/example/compose/postgres/docker-compose.yml
renovate[bot] 28e702f5c8
build(deps): update postgres docker tag to v14 (#2430)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-10-01 11:03:06 +10:00

13 lines
209 B
YAML

---
version: "3"
services:
postgres:
image: postgres:14
environment:
- POSTGRES_PASSWORD=password
- POSTGRES_USER=admin
- POSTGRES_DB=authelia
networks:
- authelianet
...