2025.04.10

This commit is contained in:
2025-04-10 10:32:09 +02:00
parent 76a0a33db7
commit bcff5e2f5c
10 changed files with 143 additions and 4 deletions

View File

@ -13,6 +13,7 @@
# echo 'mp0: /storage02/downloads/torrent,mp=/srv/downloads' >> /etc/pve/nodes/pve01/lxc/122.conf # echo 'mp0: /storage02/downloads/torrent,mp=/srv/downloads' >> /etc/pve/nodes/pve01/lxc/122.conf
# echo 'mp0: /storage02/downloads,mp=/mnt/downloads' >> /etc/pve/nodes/pve01/lxc/118.conf # echo 'mp0: /storage02/downloads,mp=/mnt/downloads' >> /etc/pve/nodes/pve01/lxc/118.conf
--- ---
version: "3.8"
services: services:
############################ ############################
# GLUETUN # GLUETUN

View File

@ -7,7 +7,7 @@
# Next, change the permissions on this file so that it is read+write for the owner only. # Next, change the permissions on this file so that it is read+write for the owner only.
# chmod 600 /opt/stack/gitea/ssh/authorized_keys # chmod 600 /opt/stack/gitea/ssh/authorized_keys
version: "3.8"
services: services:
server: server:
image: gitea/gitea:latest image: gitea/gitea:latest
@ -24,3 +24,5 @@ services:
ports: ports:
- "3000:3000" - "3000:3000"
- "222:22" - "222:22"
labels:
- com.centurylinklabs.watchtower.enable=true

View File

@ -0,0 +1,14 @@
---
version: "3.8"
services:
it-tools:
container_name: it-tools
restart: unless-stopped
ports:
- 8082:80
environment:
- UID=1000
- GID=1000
image: corentinth/it-tools:latest
labels:
- com.centurylinklabs.watchtower.enable=true

View File

@ -1,4 +1,5 @@
--- ---
version: "3.8"
services: services:
broker: broker:
image: docker.io/library/redis:7 image: docker.io/library/redis:7
@ -28,3 +29,5 @@ services:
- PAPERLESS_ADMIN_USER=admin - PAPERLESS_ADMIN_USER=admin
- PAPERLESS_ADMIN_PASSWORD=admin - PAPERLESS_ADMIN_PASSWORD=admin
- PAPERLESS_OCR_LANGUAGE=deu - PAPERLESS_OCR_LANGUAGE=deu
labels:
- com.centurylinklabs.watchtower.enable=true

View File

@ -0,0 +1,11 @@
---
version: "3.8"
services:
pwpush:
image: pglombardo/pwpush:latest
container_name: PasswordPusher
restart: always
ports:
- 5100:5100
labels:
- com.centurylinklabs.watchtower.enable=true

View File

@ -0,0 +1,29 @@
---
version: "3.8"
services:
searxng:
image: searxng/searxng:latest
container_name: searxng
restart: always
networks:
- searxng
ports:
- 0.0.0.0:8086:8080
volumes:
- ./searxng:/etc/searxng:rw
environment:
#- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
- SEARXNG_BASE_URL=https://searxng.vmnetz.lan64.de/
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
logging:
driver: json-file
options:
max-size: 1m
max-file: "1"
labels:
- com.centurylinklabs.watchtower.enable=true

View File

@ -0,0 +1,17 @@
---
version: "3.8"
services:
stirling-pdf:
image: frooodle/s-pdf:latest
container_name: stirling-pdf
ports:
- 8081:8080
volumes:
- ./stirling-pdf/trainingData:/usr/share/tesseract-ocr/4.00/tessdata #Required for extra OCR languages
- ./stirling-pdf/extraConfigs:/configs
- ./stirling-pdf/customFiles:/customFiles/
environment:
- DOCKER_ENABLE_SECURITY=false
restart: always
labels:
- com.centurylinklabs.watchtower.enable=true

View File

@ -0,0 +1,16 @@
---
version: "3.8"
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
environment:
- ADMIN_TOKEN=${ADMIN_TOKEN}
- SIGNUPS_ALLOWED=false
volumes:
- ./vw_data:/data
ports:
- 17881:80
restart: always
labels:
- com.centurylinklabs.watchtower.enable=true

View File

@ -0,0 +1,18 @@
---
version: "3.8"
services:
watchtower:
image: containrrr/watchtower:latest
container_name: watchtower
environment:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_LABEL_ENABLE=true
- WATCHTOWER_INCLUDE_RESTARTING=true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /etc/timezone:/etc/timezone:ro
ports:
- 8083:8080
restart: always
labels:
- com.centurylinklabs.watchtower.enable=true

View File

@ -0,0 +1,28 @@
---
version: "3.8"
services:
web-check:
image: lissy93/web-check
container_name: web-check
restart: unless-stopped
ports:
- 3010:3000
environment:
- UID=1000
- GID=1000
healthcheck:
test:
- CMD
- curl
- -f
- http://localhost:3000
interval: 1m
timeout: 15s
retries: 3
logging:
driver: json-file
options:
max-size: 10m
max-file: "3"
labels:
- com.centurylinklabs.watchtower.enable=true