2025.04.14-08:40
This commit is contained in:
@ -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:
|
||||
|
18
Docker/minio/docker-compose.yml
Normal file
18
Docker/minio/docker-compose.yml
Normal 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
|
@ -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:
|
||||
|
10
Proxmox/Proxmox_LOCAL_LVM Merge.md
Normal file
10
Proxmox/Proxmox_LOCAL_LVM Merge.md
Normal file
@ -0,0 +1,10 @@
|
||||
On fresh install of Proxmox VE i like to remove local-lvm storage as i don't use it. And combine local-lvm storage to main local storage.
|
||||
More info
|
||||
|
||||
**Video: 10+ YEARS OLD laptop is my PROXMOX server**
|
||||
https://youtu.be/5ybXCED83ww?si=pWsyFhD4-AFBO5DG&t=485
|
||||
|
||||
**Command:**
|
||||
```bash
|
||||
lvremove /dev/pve/data -y && lvresize -l +100%FREE /dev/pve/root && resize2fs /dev/mapper/pve-root
|
||||
```
|
Reference in New Issue
Block a user