0
0
opnxng-deploy-playbook/templates/compose/authelia.yaml.j2

23 lines
434 B
Plaintext
Raw Normal View History

2023-11-06 10:39:27 +08:00
# {{ ansible_managed }}
version: "3.3"
services:
authelia:
image: ghcr.io/authelia/authelia
container_name: authelia
security_opt:
- no-new-privileges
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Singapore
ports:
2023-11-10 12:35:16 +08:00
- 8888:9091
2023-11-06 10:39:27 +08:00
volumes:
- {{ docker_dir }}/authelia:/config
restart: unless-stopped
networks:
2023-11-10 05:28:42 +08:00
- authelia
2023-11-06 10:39:27 +08:00
networks:
2023-11-10 05:28:42 +08:00
authelia:
name: authelia