This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
jupiter-compose/authelia/docker-compose.yml
2023-10-28 14:30:26 +01:00

33 lines
620 B
YAML

services:
authelia:
image: authelia/authelia
restart: unless-stopped
volumes:
- /home/nick/configs/authelia:/config
healthcheck:
disable: true
networks:
- default
- routing
user: 1000:1000
db:
image: postgres:14
restart: unless-stopped
environment:
- POSTGRES_USER=authelia
- POSTGRES_PASSWORD=authelia
- POSTGRES_DB=authelia
volumes:
- /home/nick/configs/authelia/db:/var/lib/postgresql/data
user: 1000:1000
redis:
image: redis
restart: unless-stopped
networks:
routing:
external: true
name: routing