Add compose.yml

This commit is contained in:
2025-11-20 05:13:20 +00:00
parent 4de630f7f1
commit 1114fabdb2

27
compose.yml Normal file
View File

@@ -0,0 +1,27 @@
services:
thelounge:
image: thelounge/thelounge:latest
container_name: thelounge
restart: unless-stopped
# The Lounge listens on 9000 internally
ports:
- "9000:9000"
volumes:
- /opt/proxy_stack/apps/thelounge/data:/var/opt/thelounge
environment:
- TZ=America/Toronto
# If at some point you run Traefik *on this same Docker host*
# you can uncomment and adapt these labels.
labels:
- "traefik.enable=true"
- "traefik.http.routers.thelounge.rule=Host(`irc.digitalvoid.ca`)"
- "traefik.http.routers.thelounge.entrypoints=websecure"
- "traefik.http.routers.thelounge.tls.certresolver=letsencrypt"
- "traefik.http.services.thelounge.loadbalancer.server.port=9000"
volumes:
thelounge_data: