This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/scripts/ci.docker-compose.yml

26 lines
514 B
YAML
Raw Permalink Normal View History

version: '3.7'
services:
postgresql:
container_name: postgres
2020-12-06 18:52:26 +00:00
image: docker.beryju.org/proxy/library/postgres:11
volumes:
- db-data:/var/lib/postgresql/data
environment:
2020-12-05 21:08:42 +00:00
POSTGRES_USER: authentik
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
2020-12-05 21:08:42 +00:00
POSTGRES_DB: authentik
ports:
- 5432:5432
restart: always
redis:
container_name: redis
2020-12-06 18:52:26 +00:00
image: docker.beryju.org/proxy/library/redis
ports:
- 6379:6379
restart: always
volumes:
db-data:
driver: local