2025.04.14-08:40

This commit is contained in:
2025-04-14 08:48:54 +02:00
parent 3994f68c38
commit 055304df00
4 changed files with 59 additions and 4 deletions

View File

@ -1,3 +1,4 @@
# echo 'mp0: /storage02/downloads/jdownloader,mp=/srv/downloads' >> /etc/pve/nodes/pve01/lxc/101.conf
---
version: "3.8"
services:
@ -17,7 +18,7 @@ services:
- MYJDOWNLOADER_DEVICE_NAME=JDownloader@SRV
volumes:
- ./appdata/jdownloader-2:/config:rw
- /srv/Downloads:/output:rw
- /srv/downloads:/output:rw
ports:
- 5800:5800
labels:

View File

@ -0,0 +1,18 @@
---
version: "3.8"
services:
minio:
image: minio/minio:latest
container_name: minio
restart: unless-stopped
ports:
- 9000:9000 # MinIO API Port
- 9090:9090 # MinIO Console Port
environment:
- MINIO_ROOT_USER=admin
- MINIO_ROOT_PASSWORD=mysecretpassword
volumes:
- /srv/minio:/data
command: server --console-address ":9090" /data
labels:
- com.centurylinklabs.watchtower.enable=true

View File

@ -1,18 +1,38 @@
---
version: "3.8"
services:
redis:
image: docker.io/valkey/valkey:8-alpine
container_name: redis
command: valkey-server --save 30 1 --loglevel warning
restart: unless-stopped
networks:
- searxng
volumes:
- valkey-data2:/data
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
searxng:
image: searxng/searxng:latest
container_name: searxng
restart: always
restart: unless-stopped
networks:
- searxng
ports:
- 0.0.0.0:8086:8080
- 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
@ -27,3 +47,9 @@ services:
max-file: "1"
labels:
- com.centurylinklabs.watchtower.enable=true
networks:
searxng: null
volumes:
valkey-data2: