Adds auto-update to containers, enables auto-update for root, sync only at 8 and 20, excludes some files from sync
This commit is contained in:
@@ -3,10 +3,7 @@ Description=Timer for the rclone-parents service
|
|||||||
|
|
||||||
[Timer]
|
[Timer]
|
||||||
OnCalendar=08:00:00
|
OnCalendar=08:00:00
|
||||||
OnCalendar=12:00:00
|
|
||||||
OnCalendar=16:00:00
|
|
||||||
OnCalendar=20:00:00
|
OnCalendar=20:00:00
|
||||||
Persistent=true
|
|
||||||
Unit=rclone-parents.service
|
Unit=rclone-parents.service
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ target=/var/mnt/nas/containers/nextcloud/storage/data/__groupfolders/1/files/dow
|
|||||||
|
|
||||||
num_torrents="$(find "${torrents}" -mindepth 1 -maxdepth 1 | wc -l)" || echo 0
|
num_torrents="$(find "${torrents}" -mindepth 1 -maxdepth 1 | wc -l)" || echo 0
|
||||||
if [[ "${num_torrents}" -gt 0 ]]; then
|
if [[ "${num_torrents}" -gt 0 ]]; then
|
||||||
mv "${torrents}"* "${target}/"
|
mv "${torrents}/"* "${target}/"
|
||||||
fi
|
fi
|
||||||
echo "Found ${num_torrents} torrent files"
|
echo "Found ${num_torrents} torrent files"
|
||||||
num_jdownloader="$(find "${jdownloader}" -mindepth 1 -maxdepth 1 | wc -l)" || echo 0
|
num_jdownloader="$(find "${jdownloader}" -mindepth 1 -maxdepth 1 | wc -l)" || echo 0
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
/root/scripts/rclone sync --links /var/mnt/nas encrypted-parents:Backup/
|
/root/scripts/rclone --log-level INFO --log-file /var/log/rclone-parents.log sync --exclude nextcloud.log --exclude qbittorrent/storage/downloads/** --exclude jdownloader/storage/output/* --links /var/mnt/nas/containers encrypted-parents:Backup/containers
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ for user in "${users[@]}"; do
|
|||||||
sudo -u "${user}" /opt/bin/add-secrets.sh "${secrets_file}"
|
sudo -u "${user}" /opt/bin/add-secrets.sh "${secrets_file}"
|
||||||
fi
|
fi
|
||||||
systemctl --user -M "${user}@" daemon-reload
|
systemctl --user -M "${user}@" daemon-reload
|
||||||
systemctl --user -M "${user}@" enable "podman-auto-update.timer" || true
|
systemctl --user -M "${user}@" enable --now "podman-auto-update.timer" || true
|
||||||
systemctl --user -M "${user}@" stop "${user}.service" || true
|
systemctl --user -M "${user}@" stop "${user}.service" || true
|
||||||
systemctl --user -M "${user}@" start "${user}.service"
|
systemctl --user -M "${user}@" start "${user}.service"
|
||||||
echo "${user} done"
|
echo "${user} done"
|
||||||
@@ -36,6 +36,8 @@ systemctl --user -M "paperless@" enable "backup-database.timer"
|
|||||||
systemctl --user -M "synapse@" enable "backup-database.timer"
|
systemctl --user -M "synapse@" enable "backup-database.timer"
|
||||||
systemctl --user -M "wallabag@" enable "backup-database.timer"
|
systemctl --user -M "wallabag@" enable "backup-database.timer"
|
||||||
|
|
||||||
|
systemctl enable --now "podman-auto-update.timer" || true
|
||||||
|
|
||||||
/opt/bin/add-secrets.sh /root/.secrets
|
/opt/bin/add-secrets.sh /root/.secrets
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl start samba.service
|
systemctl start samba.service
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ Environment=PGID=1000
|
|||||||
Environment=PUID=1000
|
Environment=PUID=1000
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=lscr.io/linuxserver/bazarr:latest
|
Image=lscr.io/linuxserver/bazarr:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Network=gluetun.container
|
Network=gluetun.container
|
||||||
Pod=arr.pod
|
Pod=arr.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ Environment=VPN_SERVICE_PROVIDER=nordvpn
|
|||||||
Environment=VPN_TYPE=openvpn
|
Environment=VPN_TYPE=openvpn
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/qmcgaw/gluetun:v3.40
|
Image=docker.io/qmcgaw/gluetun:v3.40
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=arr.pod
|
Pod=arr.pod
|
||||||
Secret=vpn-user,type=env,target=OPENVPN_USER
|
Secret=vpn-user,type=env,target=OPENVPN_USER
|
||||||
Secret=vpn-password,type=env,target=OPENVPN_PASSWORD
|
Secret=vpn-password,type=env,target=OPENVPN_PASSWORD
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ Environment=PGID=1000
|
|||||||
Environment=PUID=1000
|
Environment=PUID=1000
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=lscr.io/linuxserver/lidarr:latest
|
Image=lscr.io/linuxserver/lidarr:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Network=gluetun.container
|
Network=gluetun.container
|
||||||
Pod=arr.pod
|
Pod=arr.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ Environment=LOG_LEVEL=debug
|
|||||||
Environment=PORT=8080
|
Environment=PORT=8080
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/sctx/overseerr:latest
|
Image=docker.io/sctx/overseerr:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Network=gluetun.container
|
Network=gluetun.container
|
||||||
Pod=arr.pod
|
Pod=arr.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ Environment=PGID=1000
|
|||||||
Environment=PUID=1000
|
Environment=PUID=1000
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=lscr.io/linuxserver/prowlarr:latest
|
Image=lscr.io/linuxserver/prowlarr:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Network=gluetun.container
|
Network=gluetun.container
|
||||||
Pod=arr.pod
|
Pod=arr.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ Environment=PGID=1000
|
|||||||
Environment=PUID=1000
|
Environment=PUID=1000
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=lscr.io/linuxserver/radarr:latest
|
Image=lscr.io/linuxserver/radarr:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Network=gluetun.container
|
Network=gluetun.container
|
||||||
Pod=arr.pod
|
Pod=arr.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ Environment=PGID=1000
|
|||||||
Environment=PUID=1000
|
Environment=PUID=1000
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=lscr.io/linuxserver/sonarr:latest
|
Image=lscr.io/linuxserver/sonarr:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Network=gluetun.container
|
Network=gluetun.container
|
||||||
Pod=arr.pod
|
Pod=arr.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/postgres:18
|
Image=docker.io/postgres:18
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=gitea.pod
|
Pod=gitea.pod
|
||||||
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ Environment=SSH_LISTEN_PORT=2222
|
|||||||
Environment=SSH_PORT=2222
|
Environment=SSH_PORT=2222
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/gitea/gitea:latest
|
Image=docker.io/gitea/gitea:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=gitea.pod
|
Pod=gitea.pod
|
||||||
Secret=database-password,type=env,target=GITEA__database__PASSWD
|
Secret=database-password,type=env,target=GITEA__database__PASSWD
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ Environment=PUID=1006
|
|||||||
Environment=PGID=1006
|
Environment=PGID=1006
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=lscr.io/linuxserver/homeassistant:latest
|
Image=lscr.io/linuxserver/homeassistant:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=homeassistant.pod
|
Pod=homeassistant.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:bcf63357191b76a916ae5eb93464d65c07511da41e3bf7a8416db519b40b1c23
|
Image=ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:bcf63357191b76a916ae5eb93464d65c07511da41e3bf7a8416db519b40b1c23
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=immich.pod
|
Pod=immich.pod
|
||||||
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
||||||
ShmSize=128m
|
ShmSize=128m
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ Environment=IMMICH_VERSION=v2
|
|||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Environment=UPLOAD_LOCATION=./library
|
Environment=UPLOAD_LOCATION=./library
|
||||||
Image=ghcr.io/immich-app/immich-machine-learning:release
|
Image=ghcr.io/immich-app/immich-machine-learning:release
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=immich.pod
|
Pod=immich.pod
|
||||||
Secret=database-password,type=env,target=DB_PASSWORD
|
Secret=database-password,type=env,target=DB_PASSWORD
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/valkey/valkey:8@sha256:81db6d39e1bba3b3ff32bd3a1b19a6d69690f94a3954ec131277b9a26b95b3aa
|
Image=docker.io/valkey/valkey:8@sha256:81db6d39e1bba3b3ff32bd3a1b19a6d69690f94a3954ec131277b9a26b95b3aa
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=immich.pod
|
Pod=immich.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ Environment=IMMICH_VERSION=v2
|
|||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Environment=UPLOAD_LOCATION=./library
|
Environment=UPLOAD_LOCATION=./library
|
||||||
Image=ghcr.io/immich-app/immich-server:release
|
Image=ghcr.io/immich-app/immich-server:release
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=immich.pod
|
Pod=immich.pod
|
||||||
Secret=database-password,type=env,target=DB_PASSWORD
|
Secret=database-password,type=env,target=DB_PASSWORD
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ Environment=MYJDOWNLOADER_DEVICE_NAME=pi4
|
|||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Environment=USER_ID=1005
|
Environment=USER_ID=1005
|
||||||
Image=docker.io/jlesage/jdownloader-2:latest
|
Image=docker.io/jlesage/jdownloader-2:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=jdownloader.pod
|
Pod=jdownloader.pod
|
||||||
Secret=jdownloader-email,type=env,target=MYJDOWNLOADER_EMAIL
|
Secret=jdownloader-email,type=env,target=MYJDOWNLOADER_EMAIL
|
||||||
Secret=jdownloader-password,type=env,target=MYJDOWNLOADER_PASSWORD
|
Secret=jdownloader-password,type=env,target=MYJDOWNLOADER_PASSWORD
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ AutoUpdate=registry
|
|||||||
ContainerName=kiwix
|
ContainerName=kiwix
|
||||||
Exec='*.zim'
|
Exec='*.zim'
|
||||||
Image=ghcr.io/kiwix/kiwix-serve:latest
|
Image=ghcr.io/kiwix/kiwix-serve:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=kiwix.pod
|
Pod=kiwix.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ AutoUpdate=registry
|
|||||||
ContainerName=komga
|
ContainerName=komga
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/gotson/komga:latest
|
Image=docker.io/gotson/komga:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=komga.pod
|
Pod=komga.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ AutoUpdate=registry
|
|||||||
ContainerName=navidrome
|
ContainerName=navidrome
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=ghcr.io/navidrome/navidrome:latest
|
Image=ghcr.io/navidrome/navidrome:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=navidrome.pod
|
Pod=navidrome.pod
|
||||||
Secret=encryption-key,type=env,target=ND_PASSWORDENCRYPTIONKEY
|
Secret=encryption-key,type=env,target=ND_PASSWORDENCRYPTIONKEY
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ ContainerName=nextcloud-cron
|
|||||||
Entrypoint=/cron.sh
|
Entrypoint=/cron.sh
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/nextcloud:32
|
Image=docker.io/nextcloud:32
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=nextcloud.pod
|
Pod=nextcloud.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/postgres:18
|
Image=docker.io/postgres:18
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=nextcloud.pod
|
Pod=nextcloud.pod
|
||||||
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ ContainerName=nextcloud
|
|||||||
Environment=NC_INSTANCE_URL=http://nextcloud.local
|
Environment=NC_INSTANCE_URL=http://nextcloud.local
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=ghcr.io/nextcloud/nextcloud-appapi-harp:release
|
Image=ghcr.io/nextcloud/nextcloud-appapi-harp:release
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=nextcloud.pod
|
Pod=nextcloud.pod
|
||||||
Secret=hp-key,type=env,target=HP_SHARED_KEY
|
Secret=hp-key,type=env,target=HP_SHARED_KEY
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ ContainerName=nextcloud-redis
|
|||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Exec=/bin/sh -c 'redis-server --appendonly yes --requirepass $${REDIS_PASSWORD}'
|
Exec=/bin/sh -c 'redis-server --appendonly yes --requirepass $${REDIS_PASSWORD}'
|
||||||
Image=docker.io/redis:alpine
|
Image=docker.io/redis:alpine
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=nextcloud.pod
|
Pod=nextcloud.pod
|
||||||
Secret=nextcloud-redis-password,type=env,target=REDIS_PASSWORD
|
Secret=nextcloud-redis-password,type=env,target=REDIS_PASSWORD
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ Environment=REDIS_HOST=nextcloud-redis
|
|||||||
Environment=TRUSTED_PROXIES=192.168.0.0/16 172.16.0.0/12 169.254.0.0/16 10.0.0.0/8
|
Environment=TRUSTED_PROXIES=192.168.0.0/16 172.16.0.0/12 169.254.0.0/16 10.0.0.0/8
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/nextcloud:32
|
Image=docker.io/nextcloud:32
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=nextcloud.pod
|
Pod=nextcloud.pod
|
||||||
Secret=database-user,type=env,target=MYSQL_USER
|
Secret=database-user,type=env,target=MYSQL_USER
|
||||||
Secret=database-password,type=env,target=MYSQL_PASSWORD
|
Secret=database-password,type=env,target=MYSQL_PASSWORD
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ ContainerName=nginx-acme
|
|||||||
Environment=DEFAULT_EMAIL=guillaume.tache@hotmail.com
|
Environment=DEFAULT_EMAIL=guillaume.tache@hotmail.com
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/nginxproxy/acme-companion:2.2.9
|
Image=docker.io/nginxproxy/acme-companion:2.2.9
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=nginx.pod
|
Pod=nginx.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ AutoUpdate=registry
|
|||||||
ContainerName=nginx
|
ContainerName=nginx
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/nginx:latest
|
Image=docker.io/nginx:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=nginx.pod
|
Pod=nginx.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ Environment=RATE_LIMIT=false
|
|||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Environment=WS_FALLBACK=false
|
Environment=WS_FALLBACK=false
|
||||||
Image=lscr.io/linuxserver/pairdrop:latest
|
Image=lscr.io/linuxserver/pairdrop:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=pairdrop.pod
|
Pod=pairdrop.pod
|
||||||
ReadOnly=true
|
ReadOnly=true
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ ContainerName=gotenberg
|
|||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Exec=gotenberg --chromium-disable-javascript=true --chromium-allow-list=file:///tmp/.*
|
Exec=gotenberg --chromium-disable-javascript=true --chromium-allow-list=file:///tmp/.*
|
||||||
Image=docker.io/gotenberg/gotenberg:8
|
Image=docker.io/gotenberg/gotenberg:8
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=paperless.pod
|
Pod=paperless.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/library/postgres:18
|
Image=docker.io/library/postgres:18
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=paperless.pod
|
Pod=paperless.pod
|
||||||
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ AutoUpdate=registry
|
|||||||
ContainerName=paperless-redis
|
ContainerName=paperless-redis
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/library/redis:8
|
Image=docker.io/library/redis:8
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=paperless.pod
|
Pod=paperless.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ Environment=TZ=Europe/Zurich
|
|||||||
Environment=USERMAP_GID=1020
|
Environment=USERMAP_GID=1020
|
||||||
Environment=USERMAP_UID=1020
|
Environment=USERMAP_UID=1020
|
||||||
Image=ghcr.io/paperless-ngx/paperless-ngx:latest
|
Image=ghcr.io/paperless-ngx/paperless-ngx:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=paperless.pod
|
Pod=paperless.pod
|
||||||
Secret=paperless-secret-key,type=env,target=PAPERLESS_SECRET_KEY
|
Secret=paperless-secret-key,type=env,target=PAPERLESS_SECRET_KEY
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ AutoUpdate=registry
|
|||||||
ContainerName=tika
|
ContainerName=tika
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/apache/tika:latest
|
Image=docker.io/apache/tika:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=paperless.pod
|
Pod=paperless.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/pihole/pihole:latest
|
Image=docker.io/pihole/pihole:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
IP=172.20.0.6
|
IP=172.20.0.6
|
||||||
Network=pihole.network
|
Network=pihole.network
|
||||||
Pod=pihole.pod
|
Pod=pihole.pod
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ Command=CMD chown -R 999:1001 /usr/local/unbound/cachedb.d/ && /bin/sh
|
|||||||
ContainerName=unbound-redis-socket
|
ContainerName=unbound-redis-socket
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/busybox
|
Image=docker.io/busybox
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=pihole.pod
|
Pod=pihole.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/redis:alpine
|
Image=docker.io/redis:alpine
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=pihole.pod
|
Pod=pihole.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/madnuttah/unbound:latest
|
Image=docker.io/madnuttah/unbound:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
IP=172.20.0.7
|
IP=172.20.0.7
|
||||||
Network=pihole.network
|
Network=pihole.network
|
||||||
Pod=pihole.pod
|
Pod=pihole.pod
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ Environment=VPN_SERVICE_PROVIDER=nordvpn
|
|||||||
Environment=VPN_TYPE=openvpn
|
Environment=VPN_TYPE=openvpn
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/qmcgaw/gluetun:v3.40
|
Image=docker.io/qmcgaw/gluetun:v3.40
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=qbittorrent.pod
|
Pod=qbittorrent.pod
|
||||||
Secret=vpn-user,type=env,target=OPENVPN_USER
|
Secret=vpn-user,type=env,target=OPENVPN_USER
|
||||||
Secret=vpn-password,type=env,target=OPENVPN_PASSWORD
|
Secret=vpn-password,type=env,target=OPENVPN_PASSWORD
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ Environment=PGID=1004
|
|||||||
Environment=PUID=1004
|
Environment=PUID=1004
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/qbittorrentofficial/qbittorrent-nox:latest
|
Image=docker.io/qbittorrentofficial/qbittorrent-nox:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Network=gluetun.container
|
Network=gluetun.container
|
||||||
Pod=qbittorrent.pod
|
Pod=qbittorrent.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[Pod]
|
[Pod]
|
||||||
PodName=qbittorrent
|
PodName=qbittorrent
|
||||||
PublishPort=6881:6881
|
PublishPort=35167:35167
|
||||||
#PublishPort=8388:8388
|
#PublishPort=8388:8388
|
||||||
#PublishPort=8888:8888
|
#PublishPort=8888:8888
|
||||||
PublishPort=9001:8080
|
PublishPort=9001:8080
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ Environment=SHARE=nas:/nas:true:true:false:tga:tga:tga
|
|||||||
Environment=SHARE1=zero:/zero:true:false:false:zero:zero:zero
|
Environment=SHARE1=zero:/zero:true:false:false:zero:zero:zero
|
||||||
Environment=SHARE2=paperless:/paperless-input:true:false:false:tga:tga:tga
|
Environment=SHARE2=paperless:/paperless-input:true:false:false:tga:tga:tga
|
||||||
Image=registry.opensuse.org/opensuse/samba:latest
|
Image=registry.opensuse.org/opensuse/samba:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
PublishPort=139:139
|
PublishPort=139:139
|
||||||
PublishPort=445:445
|
PublishPort=445:445
|
||||||
Secret=tga-credentials,type=env,target=USER
|
Secret=tga-credentials,type=env,target=USER
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/postgres:18
|
Image=docker.io/postgres:18
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=synapse.pod
|
Pod=synapse.pod
|
||||||
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ ContainerName=synapse
|
|||||||
Environment=SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
|
Environment=SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
|
||||||
Environment=TZ=Europe/Zurich
|
Environment=TZ=Europe/Zurich
|
||||||
Image=docker.io/matrixdotorg/synapse:latest
|
Image=docker.io/matrixdotorg/synapse:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=synapse.pod
|
Pod=synapse.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/postgres:18
|
Image=docker.io/postgres:18
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=wallabag.pod
|
Pod=wallabag.pod
|
||||||
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=10s
|
HealthTimeout=10s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/redis:alpine
|
Image=docker.io/redis:alpine
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=wallabag.pod
|
Pod=wallabag.pod
|
||||||
StartWithPod=true
|
StartWithPod=true
|
||||||
Timezone=Europe/Zurich
|
Timezone=Europe/Zurich
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ HealthInterval=30s
|
|||||||
HealthTimeout=5s
|
HealthTimeout=5s
|
||||||
HealthRetries=5
|
HealthRetries=5
|
||||||
Image=docker.io/wallabag/wallabag:latest
|
Image=docker.io/wallabag/wallabag:latest
|
||||||
|
Label=io.containers.autoupdate=registry
|
||||||
Pod=wallabag.pod
|
Pod=wallabag.pod
|
||||||
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
Secret=database-password,type=env,target=POSTGRES_PASSWORD
|
||||||
Secret=database-password,type=env,target=SYMFONY__ENV__DATABASE_PASSWORD
|
Secret=database-password,type=env,target=SYMFONY__ENV__DATABASE_PASSWORD
|
||||||
|
|||||||
Reference in New Issue
Block a user