cleanup: remove quizmaster and leafweb (unused/orphaned), add watchtower monitor-only labels, minor consistency fixes

- quizmaster: removed entirely (test service, no longer used); also removed Portainer stack and /srv/quizmaster data
- leafweb: removed orphaned MSSQL compose file (no running container, no Portainer stack, no data on disk)
- authelia, gitea, couchdb, portainer, immich (server + ml): add com.centurylinklabs.watchtower.monitor-only=true so watchtower still notifies on new versions without auto-applying them
- ladder: restore restart: unless-stopped (was commented out)
- rackpeek: add missing TZ env var
This commit is contained in:
2026-07-20 02:19:32 +00:00
parent 2f1a988ac3
commit f665865762
10 changed files with 14 additions and 33 deletions
+2
View File
@@ -3,6 +3,8 @@ services:
container_name: authelia container_name: authelia
image: authelia/authelia:4.38 image: authelia/authelia:4.38
restart: unless-stopped restart: unless-stopped
labels:
- com.centurylinklabs.watchtower.monitor-only=true
volumes: volumes:
- /srv/authelia/config:/config - /srv/authelia/config:/config
environment: environment:
+2
View File
@@ -3,6 +3,8 @@ services:
image: couchdb image: couchdb
container_name: couchdb container_name: couchdb
restart: always restart: always
labels:
- com.centurylinklabs.watchtower.monitor-only=true
ports: ports:
- "127.0.0.1:5984:5984" - "127.0.0.1:5984:5984"
environment: environment:
+2
View File
@@ -7,6 +7,8 @@ services:
server: server:
image: docker.gitea.com/gitea:nightly image: docker.gitea.com/gitea:nightly
container_name: gitea container_name: gitea
labels:
- com.centurylinklabs.watchtower.monitor-only=true
environment: environment:
- USER_UID=1000 - USER_UID=1000
- USER_GID=1000 - USER_GID=1000
+4
View File
@@ -16,6 +16,8 @@ services:
# extends: # extends:
# file: hwaccel.transcoding.yml # file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding # service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
labels:
- com.centurylinklabs.watchtower.monitor-only=true
volumes: volumes:
- /mnt/nas_family/immich-library:/usr/src/app/upload - /mnt/nas_family/immich-library:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
@@ -41,6 +43,8 @@ services:
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
# file: hwaccel.ml.yml # file: hwaccel.ml.yml
# service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable # service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
labels:
- com.centurylinklabs.watchtower.monitor-only=true
volumes: volumes:
- model-cache:/cache - model-cache:/cache
env_file: env_file:
+1 -1
View File
@@ -4,7 +4,7 @@ services:
image: ghcr.io/everywall/ladder:latest image: ghcr.io/everywall/ladder:latest
container_name: ladder container_name: ladder
#build: . #build: .
#restart: always restart: unless-stopped
#command: sh -c ./ladder #command: sh -c ./ladder
environment: environment:
- PORT=8080 - PORT=8080
-10
View File
@@ -1,10 +0,0 @@
version: '3.8'
services:
sql-server:
image: mcr.microsoft.com/mssql/server
container_name: leafweb-sql-server
environment:
SA_PASSWORD: ${SA_PASSWORD}
ACCEPT_EULA: Y
ports:
- "127.0.0.1:1433:1433"
+2
View File
@@ -4,6 +4,8 @@ services:
container_name: portainer container_name: portainer
restart: always restart: always
privileged: true privileged: true
labels:
- com.centurylinklabs.watchtower.monitor-only=true
volumes: volumes:
- /mnt/containers/portainer/container-data/data:/data:Z - /mnt/containers/portainer/container-data/data:/data:Z
- /var/run/docker.sock:/var/run/docker.sock:Z - /var/run/docker.sock:/var/run/docker.sock:Z
-11
View File
@@ -1,11 +0,0 @@
version: "3.7"
services:
app:
image: nymanjens/quizmaster:latest
stdin_open: true
tty: true
ports: ["9001:9000"]
volumes:
- /srv/quizmaster/quiz:/app/conf/quiz
- /srv/quizmaster/application.conf:/app/conf/application.conf
command: "bin/server"
-11
View File
@@ -1,11 +0,0 @@
version: "3.7"
services:
app:
image: nymanjens/quizmaster:latest
stdin_open: true
tty: true
ports: ["9001:9000"]
volumes:
- /srv/quizmaster/quiz:/app/conf/quiz
- /srv/quizmaster/application.conf:/app/conf/application.conf
command: "bin/server"
+1
View File
@@ -12,6 +12,7 @@ services:
- LETSENCRYPT_HOST=rackpeek.kolpacksoftware.com - LETSENCRYPT_HOST=rackpeek.kolpacksoftware.com
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=America/New_York
user: "1000:1000" user: "1000:1000"
restart: unless-stopped restart: unless-stopped