diff --git a/docs/portainer-stacks/Airsonic.md b/docs/portainer-stacks/Airsonic.md index a99c824..129db28 100644 --- a/docs/portainer-stacks/Airsonic.md +++ b/docs/portainer-stacks/Airsonic.md @@ -5,11 +5,11 @@ services: airsonic: image: lscr.io/linuxserver/airsonic-advanced:latest container_name: airsonic - network_mode: bridge + network_mode: ${NET-bridge} environment: - - PUID=1000 - - PGID=1000 - - TZ=Europe/Amsterdam + - PUID=${PUID-1000} + - PGID=${PGID-1000} + - TZ=${TZ-Europe/Amsterdam} volumes: - /airsonic/config:/config - /airsonic/music:/music @@ -22,5 +22,5 @@ services: - /dev/snd:/dev/snd restart: unless-stopped labels: - - com.centurylinklabs.watchtower.enable=true + - com.centurylinklabs.watchtower.enable=${AutoUpdate-true} ``` \ No newline at end of file diff --git a/docs/portainer-stacks/Bitwarden.md b/docs/portainer-stacks/Bitwarden.md index f9116d0..d94fff9 100644 --- a/docs/portainer-stacks/Bitwarden.md +++ b/docs/portainer-stacks/Bitwarden.md @@ -26,8 +26,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true diff --git a/docs/portainer-stacks/Dillinger.md b/docs/portainer-stacks/Dillinger.md index 7c2045e..5156494 100644 --- a/docs/portainer-stacks/Dillinger.md +++ b/docs/portainer-stacks/Dillinger.md @@ -27,8 +27,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/Drone.md b/docs/portainer-stacks/Drone.md index 1f50235..670c125 100644 --- a/docs/portainer-stacks/Drone.md +++ b/docs/portainer-stacks/Drone.md @@ -61,8 +61,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/Gitea.md b/docs/portainer-stacks/Gitea.md index 1111e5f..db1f2a3 100644 --- a/docs/portainer-stacks/Gitea.md +++ b/docs/portainer-stacks/Gitea.md @@ -49,8 +49,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/LibrePhotos.md b/docs/portainer-stacks/LibrePhotos.md index 05a6d42..4eb61b7 100644 --- a/docs/portainer-stacks/LibrePhotos.md +++ b/docs/portainer-stacks/LibrePhotos.md @@ -90,8 +90,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/Librespeed.md b/docs/portainer-stacks/Librespeed.md index b6399ee..456f58c 100644 --- a/docs/portainer-stacks/Librespeed.md +++ b/docs/portainer-stacks/Librespeed.md @@ -29,8 +29,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/MQTT-Mosquitto.md b/docs/portainer-stacks/MQTT-Mosquitto.md index 9371820..89a6426 100644 --- a/docs/portainer-stacks/MQTT-Mosquitto.md +++ b/docs/portainer-stacks/MQTT-Mosquitto.md @@ -30,8 +30,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` diff --git a/docs/portainer-stacks/Nextcloud.md b/docs/portainer-stacks/Nextcloud.md index 1ff892d..1032c60 100644 --- a/docs/portainer-stacks/Nextcloud.md +++ b/docs/portainer-stacks/Nextcloud.md @@ -48,8 +48,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` diff --git a/docs/portainer-stacks/Overseerr.md b/docs/portainer-stacks/Overseerr.md index dc7b1e9..8d54e9d 100644 --- a/docs/portainer-stacks/Overseerr.md +++ b/docs/portainer-stacks/Overseerr.md @@ -6,16 +6,16 @@ services: overseerr: image: lscr.io/linuxserver/overseerr:latest container_name: overseerr - network_mode: bridge + network_mode: ${NET-bridge} environment: - - PUID=1000 - - PGID=1000 - - TZ=Europe/Amsterdam + - PUID=${PUID-1000} + - PGID=${PGID-1000} + - TZ=${TZ-Europe/Amsterdam} volumes: - /overseerr:/config ports: - 5055:5055 restart: unless-stopped labels: - - com.centurylinklabs.watchtower.enable=true + - com.centurylinklabs.watchtower.enable=${AutoUpdate-true} ``` diff --git a/docs/portainer-stacks/PhotoView.md b/docs/portainer-stacks/PhotoView.md index cbd8fe8..ed55590 100644 --- a/docs/portainer-stacks/PhotoView.md +++ b/docs/portainer-stacks/PhotoView.md @@ -64,8 +64,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/Prowlarr.md b/docs/portainer-stacks/Prowlarr.md new file mode 100644 index 0000000..35a76ea --- /dev/null +++ b/docs/portainer-stacks/Prowlarr.md @@ -0,0 +1,32 @@ +Portainer Stack: +```yaml +--- +version: "3.8" +services: + prowlarr: + image: lscr.io/linuxserver/prowlarr:develop + container_name: prowlarr + network_mode: ${NET-bridge} + environment: + - PUID=${PUID-1000} + - PGID=${PGID-1000} + - TZ=${TZ-Europe/Amsterdam} + volumes: + - /prowlarr:/config + ports: + - 9696:9696 + restart: unless-stopped + labels: + - com.centurylinklabs.watchtower.enable=${AutoUpdate-true} +``` + +Environments: +``` +tag=latest +RST=unless-stopped +NET=bridge +PUID=${PUID-1000} +PGID=${PGID-1000} +TZ=Europe/Lisbon +AutoUpdate=true +``` \ No newline at end of file diff --git a/docs/portainer-stacks/Swag/Swag.md b/docs/portainer-stacks/Swag/Swag.md index c3a1fa2..37a8a21 100644 --- a/docs/portainer-stacks/Swag/Swag.md +++ b/docs/portainer-stacks/Swag/Swag.md @@ -48,8 +48,8 @@ services: Environments: ``` NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon URL=example.com diff --git a/docs/portainer-stacks/TasmoBackup.md b/docs/portainer-stacks/TasmoBackup.md index a81a5a1..893a836 100644 --- a/docs/portainer-stacks/TasmoBackup.md +++ b/docs/portainer-stacks/TasmoBackup.md @@ -24,8 +24,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/Transmission.md b/docs/portainer-stacks/Transmission.md index d42b2c1..7acc53b 100644 --- a/docs/portainer-stacks/Transmission.md +++ b/docs/portainer-stacks/Transmission.md @@ -6,11 +6,11 @@ services: transmission: image: lscr.io/linuxserver/transmission:latest container_name: transmission - network_mode: bridge + network_mode: ${NET-bridge} environment: - - PUID=1000 - - PGID=1000 - - TZ=Europe/Amsterdam + - PUID=${PUID-1000} + - PGID=${PGID-1000} + - TZ=${TZ-Europe/Amsterdam} - TRANSMISSION_WEB_HOME=/combustion-release/ - USER=username - PASS=password @@ -24,7 +24,7 @@ services: - 51413:51413/udp restart: unless-stopped labels: - - com.centurylinklabs.watchtower.enable=true + - com.centurylinklabs.watchtower.enable=${AutoUpdate-true} ```
diff --git a/docs/portainer-stacks/VSCode.md b/docs/portainer-stacks/VSCode.md index d050393..09ce331 100644 --- a/docs/portainer-stacks/VSCode.md +++ b/docs/portainer-stacks/VSCode.md @@ -31,8 +31,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/Whisparr.md b/docs/portainer-stacks/Whisparr.md index 69c8530..04eca19 100644 --- a/docs/portainer-stacks/Whisparr.md +++ b/docs/portainer-stacks/Whisparr.md @@ -6,11 +6,11 @@ services: whisparr: image: cr.hotio.dev/hotio/whisparr:nightly container_name: whisparr - network_mode: bridge + network_mode: ${NET-bridge} environment: - - PUID=1000 - - PGID=1000 - - TZ=Europe/Amsterdam + - PUID=${PUID-1000} + - PGID=${PGID-1000} + - TZ=${TZ-Europe/Amsterdam} - UMASK=002 volumes: - /whisparr:/config @@ -20,5 +20,5 @@ services: - 6969:6969 restart: unless-stopped labels: - - com.centurylinklabs.watchtower.enable=true + - com.centurylinklabs.watchtower.enable=${AutoUpdate-true} ``` \ No newline at end of file diff --git a/docs/portainer-stacks/WireGuard.md b/docs/portainer-stacks/WireGuard.md index 54a056f..2839000 100644 --- a/docs/portainer-stacks/WireGuard.md +++ b/docs/portainer-stacks/WireGuard.md @@ -6,14 +6,14 @@ services: wireguard: image: lscr.io/linuxserver/wireguard:latest container_name: wireguard - network_mode: bridge + network_mode: ${NET-bridge} cap_add: - NET_ADMIN - SYS_MODULE environment: - - PUID=1000 - - PGID=1000 - - TZ=Europe/Amsterdam + - PUID=${PUID-1000} + - PGID=${PGID-1000} + - TZ=${TZ-Europe/Amsterdam} - SERVERURL=wireguard.sthope.dev - SERVERPORT=51820 - PEERS=1 diff --git a/docs/portainer-stacks/Zigbee2MQTT.md b/docs/portainer-stacks/Zigbee2MQTT.md index a982915..f16cbec 100644 --- a/docs/portainer-stacks/Zigbee2MQTT.md +++ b/docs/portainer-stacks/Zigbee2MQTT.md @@ -26,8 +26,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/bazarr.md b/docs/portainer-stacks/bazarr.md index 8cb6f5e..01e3575 100644 --- a/docs/portainer-stacks/bazarr.md +++ b/docs/portainer-stacks/bazarr.md @@ -28,8 +28,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/digiKam.md b/docs/portainer-stacks/digiKam.md index 4431154..2c7d650 100644 --- a/docs/portainer-stacks/digiKam.md +++ b/docs/portainer-stacks/digiKam.md @@ -30,8 +30,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/heimdall.md b/docs/portainer-stacks/heimdall.md index 593ed09..47c82ec 100644 --- a/docs/portainer-stacks/heimdall.md +++ b/docs/portainer-stacks/heimdall.md @@ -25,8 +25,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true diff --git a/docs/portainer-stacks/jellyfin.md b/docs/portainer-stacks/jellyfin.md index c808ac0..f817dd7 100644 --- a/docs/portainer-stacks/jellyfin.md +++ b/docs/portainer-stacks/jellyfin.md @@ -30,8 +30,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/mqtt-explorer.md b/docs/portainer-stacks/mqtt-explorer.md index c40dd87..75639f5 100644 --- a/docs/portainer-stacks/mqtt-explorer.md +++ b/docs/portainer-stacks/mqtt-explorer.md @@ -29,8 +29,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/octoprint.md b/docs/portainer-stacks/octoprint.md index 4caa017..a1c2990 100644 --- a/docs/portainer-stacks/octoprint.md +++ b/docs/portainer-stacks/octoprint.md @@ -26,8 +26,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/qbittorrent.md b/docs/portainer-stacks/qbittorrent.md index 11e57c4..894b9cc 100644 --- a/docs/portainer-stacks/qbittorrent.md +++ b/docs/portainer-stacks/qbittorrent.md @@ -29,8 +29,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/samba.md b/docs/portainer-stacks/samba.md index 747a294..1a7a77f 100644 --- a/docs/portainer-stacks/samba.md +++ b/docs/portainer-stacks/samba.md @@ -37,8 +37,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/template.md b/docs/portainer-stacks/template.md index 6ab6b96..a462a66 100644 --- a/docs/portainer-stacks/template.md +++ b/docs/portainer-stacks/template.md @@ -8,8 +8,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file diff --git a/docs/portainer-stacks/uptime-kuma.md b/docs/portainer-stacks/uptime-kuma.md index ac53604..eecc656 100644 --- a/docs/portainer-stacks/uptime-kuma.md +++ b/docs/portainer-stacks/uptime-kuma.md @@ -20,8 +20,8 @@ Environments: tag=latest RST=unless-stopped NET=bridge -PUID=1000 -PGID=1000 +PUID=${PUID-1000} +PGID=${PGID-1000} TZ=Europe/Lisbon AutoUpdate=true ``` \ No newline at end of file