mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
21 lines
615 B
YAML
21 lines
615 B
YAML
services:
|
|
thelounge:
|
|
image: ghcr.io/thelounge/thelounge:latest
|
|
container_name: thelounge
|
|
restart: unless-stopped
|
|
user: ${PUID}:${PGID}
|
|
expose:
|
|
- 9000
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.thelounge.rule=Host(`${THE_LOUNGE_HOSTNAME?}`)"
|
|
- "traefik.http.routers.thelounge.entrypoints=websecure"
|
|
- "traefik.http.routers.thelounge.tls.certresolver=letsencrypt"
|
|
- "traefik.http.routers.thelounge.middlewares=authelia@docker"
|
|
volumes:
|
|
- ${DOCKER_DATA_DIR}/thelounge:/var/opt/thelounge
|
|
profiles:
|
|
- thelounge
|
|
- all
|
|
|