Migration to newer dockge/compose stack

This commit is contained in:
Colin Hebert
2024-09-26 15:59:37 +02:00
parent 1d52e2ac75
commit dfe252e945
104 changed files with 752 additions and 666 deletions

View File

@@ -1,23 +1,22 @@
name: irc
# yaml-language-server: $schema=https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json
services:
thelounge:
hostname: thelounge
extends:
file: ../compose.base.yaml
service: exposed-service
container_name: thelounge
image: lscr.io/linuxserver/thelounge
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- reverse-proxy
dns:
# Work around DNS blocks in various regions
- 1.1.1.1
- 1.0.0.1
volumes:
- ${NASCOMPOSE_SERVICES?}/irc/volumes/thelounge_config/:/config/
restart: unless-stopped
- ./volumes/thelounge_config/:/config/
labels:
traefik.enable: true
traefik.http.routers.thelounge.middlewares: authelia@file
networks:

View File