Created
May 7, 2023 12:53
-
-
Save meehatpa/c437a95b8d799218c472eb211aedb9f2 to your computer and use it in GitHub Desktop.
Authelia docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
authelia: | |
container_name: authelia | |
image: authelia/authelia | |
restart: unless-stopped | |
networks: | |
- traefik-net | |
expose: | |
- 9092 | |
volumes: | |
- ./authelia/config:/config | |
- ./authelia/data:/data | |
environment: | |
TZ: "Asia/Kolkata" | |
labels: | |
- traefik.enable=true | |
- traefik.http.services.authelia.loadbalancer.server.port=9092 | |
- traefik.http.routers.authelia.rule=Host(`auth.xxx.duckdns.org`) | |
- traefik.http.routers.authelia.entrypoints=websecure | |
- traefik.http.routers.authelia.tls.certresolver=myresolver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment