This commit is contained in:
2025-12-04 20:24:45 +01:00
parent da2bbe5318
commit ae54ed3d27

View File

@@ -33,7 +33,7 @@ services:
wud.watch: false wud.watch: false
restart: ${RESTART:-unless-stopped} restart: ${RESTART:-unless-stopped}
volumes: volumes:
- authentik_database:/var/lib/postgresql/data - database:/var/lib/postgresql/data
redis: redis:
command: --save 60 1 --loglevel warning command: --save 60 1 --loglevel warning
healthcheck: healthcheck:
@@ -80,12 +80,12 @@ services:
wud.watch: true wud.watch: true
wud.watch.digest: true wud.watch.digest: true
ports: ports:
- ${COMPOSE_PORT_HTTP:-9003}:9000 - 9003:9000
- ${COMPOSE_PORT_HTTPS:-9453}:9443 - 9453:9443
restart: ${RESTART:-unless-stopped} restart: ${RESTART:-unless-stopped}
volumes: volumes:
- authentik_media:/media - media:/media
- authentik_custom-templates:/templates - templates:/templates
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
worker: worker:
command: worker command: worker
@@ -108,18 +108,18 @@ services:
user: root user: root
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- authentik_media:/media - media:/media
- authentik_certs:/certs - certs:/certs
- authentik_custom-templates:/templates - custom-templates:/templates
volumes: volumes:
authentik_database: database:
driver: local driver: local
authentik_redis: redis:
driver: local driver: local
authentik_custom-templates: custom-templates:
driver: local driver: local
authentik_media: media:
driver: local driver: local
authentik_certs: certs:
driver: local driver: local