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.
2023-12-11 11:08:48 +00:00
|
|
|
version: "3.7"
|
2020-05-28 17:29:28 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgresql:
|
|
|
|
container_name: postgres
|
2023-12-11 11:08:48 +00:00
|
|
|
image: docker.io/library/postgres:12
|
2020-05-28 17:29:28 +00:00
|
|
|
volumes:
|
2023-12-11 11:08:48 +00:00
|
|
|
- db-data:/var/lib/postgresql/data
|
2020-05-28 17:29:28 +00:00
|
|
|
environment:
|
2020-07-14 19:36:40 +00:00
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
2020-12-05 21:08:42 +00:00
|
|
|
POSTGRES_DB: authentik
|
2020-05-28 17:29:28 +00:00
|
|
|
ports:
|
2023-12-11 11:08:48 +00:00
|
|
|
- 127.0.0.1:5432:5432
|
2020-05-28 17:29:28 +00:00
|
|
|
restart: always
|
|
|
|
redis:
|
|
|
|
container_name: redis
|
2023-12-11 11:08:48 +00:00
|
|
|
image: docker.io/library/redis
|
2020-05-28 17:29:28 +00:00
|
|
|
ports:
|
2023-12-11 11:08:48 +00:00
|
|
|
- 127.0.0.1:6379:6379
|
2020-05-28 17:29:28 +00:00
|
|
|
restart: always
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
db-data:
|
|
|
|
driver: local
|