diff --git a/Docker/jdownloader/docker-compose.yaml b/Docker/jdownloader/docker-compose.yaml index c4cc235..25fd2ff 100644 --- a/Docker/jdownloader/docker-compose.yaml +++ b/Docker/jdownloader/docker-compose.yaml @@ -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: diff --git a/Docker/minio/docker-compose.yml b/Docker/minio/docker-compose.yml new file mode 100644 index 0000000..ce171a5 --- /dev/null +++ b/Docker/minio/docker-compose.yml @@ -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 diff --git a/Docker/searxng/docker-compose.yaml b/Docker/searxng/docker-compose.yaml index 8890bbd..c102c41 100644 --- a/Docker/searxng/docker-compose.yaml +++ b/Docker/searxng/docker-compose.yaml @@ -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: diff --git a/Proxmox/Proxmox_LOCAL_LVM Merge.md b/Proxmox/Proxmox_LOCAL_LVM Merge.md new file mode 100644 index 0000000..cf98479 --- /dev/null +++ b/Proxmox/Proxmox_LOCAL_LVM Merge.md @@ -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 +```