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.
2020-07-14 19:53:39 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
|
|
|
postgresql:
|
|
|
|
container_name: postgres
|
2021-02-03 20:18:31 +00:00
|
|
|
image: library/postgres:11
|
2020-07-14 19:53:39 +00:00
|
|
|
volumes:
|
|
|
|
- db-data:/var/lib/postgresql/data
|
|
|
|
environment:
|
2020-12-05 21:08:42 +00:00
|
|
|
POSTGRES_USER: authentik
|
2020-07-14 19:53:39 +00:00
|
|
|
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
|
2020-12-05 21:08:42 +00:00
|
|
|
POSTGRES_DB: authentik
|
2020-07-14 19:53:39 +00:00
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
restart: always
|
|
|
|
redis:
|
|
|
|
container_name: redis
|
2021-02-03 20:18:31 +00:00
|
|
|
image: library/redis
|
2020-07-14 19:53:39 +00:00
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
db-data:
|
|
|
|
driver: local
|