From 1114fabdb2038dc8f44d206b4289e98965d82a4e Mon Sep 17 00:00:00 2001 From: boris Date: Thu, 20 Nov 2025 05:13:20 +0000 Subject: [PATCH] Add compose.yml --- compose.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 compose.yml diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..29004bb --- /dev/null +++ b/compose.yml @@ -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: \ No newline at end of file