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/.github/actions/setup/docker-compose.yml
Jens L 0c2e9234bf
ci: use native caching (#2665)
* ci: use native caching

* migrate to actions

* cleanup

* migrate more
2022-04-04 14:02:10 +02:00

26 lines
466 B
YAML

version: '3.7'
services:
postgresql:
container_name: postgres
image: library/postgres:12
volumes:
- db-data:/var/lib/postgresql/data
environment:
POSTGRES_USER: authentik
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
POSTGRES_DB: authentik
ports:
- 5432:5432
restart: always
redis:
container_name: redis
image: library/redis
ports:
- 6379:6379
restart: always
volumes:
db-data:
driver: local