TheLounge

This commit is contained in:
Tobias Manske 2022-08-13 17:53:40 +02:00
parent 5e0cd90c6b
commit 7cca56292c
Signed by: tobias
GPG Key ID: E83C743C1FC2F79A
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1 @@
COMPOSE_PROJECT_NAME=thelounge

View File

@ -0,0 +1,25 @@
---
version: "3.4"
services:
lounge:
image: thelounge/thelounge:4
volumes:
- data:/var/opt/thelounge
labels:
- "traefik.enable=true"
- "traefik.http.routers.thelounge.rule=Host(`lounge.tobiasmanske.de`)"
- "traefik.http.routers.thelounge.entryPoints=websecure"
- "traefik.http.services.thelounge.loadbalancer.server.port=9000"
- "com.centurylinklabs.watchtower.scope=update"
restart: always
networks:
- gateway
networks:
gateway:
external: true
volumes:
data:
...