2025.04.10
This commit is contained in:
@ -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
|
||||||
@ -232,4 +233,4 @@ services:
|
|||||||
- WATCHTOWER_CLEANUP=true
|
- WATCHTOWER_CLEANUP=true
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
- WATCHTOWER_NO_STARTUP_MESSAGE=true
|
- WATCHTOWER_NO_STARTUP_MESSAGE=true
|
||||||
- WATCHTOWER_TIMEOUT=30s
|
- WATCHTOWER_TIMEOUT=30s
|
||||||
|
@ -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
|
||||||
@ -23,4 +23,6 @@ services:
|
|||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
- "222:22"
|
- "222:22"
|
||||||
|
labels:
|
||||||
|
- com.centurylinklabs.watchtower.enable=true
|
||||||
|
14
Docker/it-tools/docker-compose.yaml
Normal file
14
Docker/it-tools/docker-compose.yaml
Normal 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
|
@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
version: "3.8"
|
||||||
services:
|
services:
|
||||||
broker:
|
broker:
|
||||||
image: docker.io/library/redis:7
|
image: docker.io/library/redis:7
|
||||||
@ -27,4 +28,6 @@ services:
|
|||||||
- PAPERLESS_REDIS=redis://broker:6379
|
- PAPERLESS_REDIS=redis://broker:6379
|
||||||
- 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
|
||||||
|
11
Docker/pwpush/docker-compose.yaml
Normal file
11
Docker/pwpush/docker-compose.yaml
Normal 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
|
29
Docker/searxng/docker-compose.yaml
Normal file
29
Docker/searxng/docker-compose.yaml
Normal 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
|
17
Docker/stirling-pdf/docker-compose.yaml
Normal file
17
Docker/stirling-pdf/docker-compose.yaml
Normal 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
|
16
Docker/vaultwarden/docker-compose.yaml
Normal file
16
Docker/vaultwarden/docker-compose.yaml
Normal 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
|
18
Docker/watchtower/docker-compose.yaml
Normal file
18
Docker/watchtower/docker-compose.yaml
Normal 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
|
28
Docker/web-check/docker-compose.yaml
Normal file
28
Docker/web-check/docker-compose.yaml
Normal 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
|
Reference in New Issue
Block a user