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-04-27 15:10:24 +00:00
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
services:
|
|
|
|
app:
|
|
|
|
build:
|
|
|
|
context: ..
|
|
|
|
dockerfile: .devcontainer/Dockerfile
|
|
|
|
volumes:
|
2023-05-06 16:15:03 +00:00
|
|
|
- ../:/app-root:cached
|
2023-04-27 15:10:24 +00:00
|
|
|
command: debug
|
2023-05-06 16:15:03 +00:00
|
|
|
environment:
|
|
|
|
AUTHENTIK_POSTGRESQL__USER: postgres
|
|
|
|
AUTHENTIK_POSTGRESQL__PASSWORD: postgres
|
|
|
|
AUTHENTIK_BOOTSTRAP_PASSWORD: akadmin
|
|
|
|
AUTHENTIK_BOOTSTRAP_TOKEN: akadmin
|
2023-04-27 15:10:24 +00:00
|
|
|
db:
|
|
|
|
image: docker.io/library/postgres:15
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- postgres-data:/var/lib/postgresql/data
|
|
|
|
network_mode: service:app
|
|
|
|
environment:
|
|
|
|
POSTGRES_USER: postgres
|
2023-05-06 16:15:03 +00:00
|
|
|
POSTGRES_DB: authentik
|
2023-04-27 15:10:24 +00:00
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
redis:
|
|
|
|
image: docker.io/redis/redis-stack-server
|
|
|
|
restart: unless-stopped
|
|
|
|
network_mode: service:app
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
postgres-data:
|