@simplehomelab/deployrr 6.0.0-rc3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/announcement +1 -0
- package/apps/community/CONTRIBUTING.md +660 -0
- package/apps/community/apps.json +6 -0
- package/apps/core/apps.json +16 -0
- package/apps/core/authelia/authelia-redis.yml +24 -0
- package/apps/core/authelia/compose.yml +45 -0
- package/apps/core/authelia/files/chain-authelia.yml +8 -0
- package/apps/core/authelia/files/configuration.yml +100 -0
- package/apps/core/authelia/files/middlewares-authelia.yml +9 -0
- package/apps/core/authelia/files/users.yml +15 -0
- package/apps/core/authelia/manifest.json +156 -0
- package/apps/core/authentik/authentik-postgresql.yml +26 -0
- package/apps/core/authentik/authentik-worker.yml +37 -0
- package/apps/core/authentik/compose.yml +51 -0
- package/apps/core/authentik/files/chain-authentik.yml +8 -0
- package/apps/core/authentik/files/middlewares-authentik.yml +19 -0
- package/apps/core/authentik/manifest.json +117 -0
- package/apps/core/crowdsec/compose.yml +23 -0
- package/apps/core/crowdsec/files/acquis-traefik.yaml +4 -0
- package/apps/core/crowdsec/files/acquis.yaml +8 -0
- package/apps/core/crowdsec/files/crowdsec-firewall-bouncer.yaml +46 -0
- package/apps/core/crowdsec/files/custom-whitelists.yaml +13 -0
- package/apps/core/crowdsec/manifest.json +87 -0
- package/apps/core/crowdsec-firewall-bouncer/manifest.json +85 -0
- package/apps/core/deployrr/jokes_and_tips.txt +58 -0
- package/apps/core/deployrr-dashboard/compose.yml +23 -0
- package/apps/core/deployrr-dashboard/files/bookmarks.yaml +51 -0
- package/apps/core/deployrr-dashboard/files/deployrr_icon.ico +0 -0
- package/apps/core/deployrr-dashboard/files/deployrr_icon.png +0 -0
- package/apps/core/deployrr-dashboard/files/docker.yaml +10 -0
- package/apps/core/deployrr-dashboard/files/service-template-other.yaml +10 -0
- package/apps/core/deployrr-dashboard/files/service-template-web-local.yaml +10 -0
- package/apps/core/deployrr-dashboard/files/service-template-web-remote.yaml +10 -0
- package/apps/core/deployrr-dashboard/files/services.yaml +18 -0
- package/apps/core/deployrr-dashboard/files/settings.yaml +13 -0
- package/apps/core/deployrr-dashboard/files/widgets.yaml +20 -0
- package/apps/core/deployrr-dashboard/manifest.json +133 -0
- package/apps/core/npm/compose.yml +40 -0
- package/apps/core/npm/manifest.json +60 -0
- package/apps/core/oauth/compose.yml +38 -0
- package/apps/core/oauth/files/chain-oauth.yml +8 -0
- package/apps/core/oauth/files/middlewares-oauth.yml +8 -0
- package/apps/core/oauth/files/oauth-secrets-template +3 -0
- package/apps/core/oauth/manifest.json +58 -0
- package/apps/core/socket-proxy/compose.yml +54 -0
- package/apps/core/socket-proxy/manifest.json +62 -0
- package/apps/core/system/bash-aliases/udms_bash_aliases +229 -0
- package/apps/core/system/bash-aliases/udms_bashrc +5 -0
- package/apps/core/system/docker/custom.yml +4 -0
- package/apps/core/system/docker/starter.yml +25 -0
- package/apps/core/system/rclone/compose.yml +28 -0
- package/apps/core/system/rclone/rclone-mount-template.service +43 -0
- package/apps/core/system/rclone/rclone-template.conf +6 -0
- package/apps/core/system/rclone/start-media-after-boot.service +9 -0
- package/apps/core/system/rclone/start-media-after-boot.sh +57 -0
- package/apps/core/tinyauth/compose.yml +47 -0
- package/apps/core/tinyauth/files/chain-tinyauth.yml +8 -0
- package/apps/core/tinyauth/files/middlewares-tinyauth.yml +10 -0
- package/apps/core/tinyauth/manifest.json +70 -0
- package/apps/core/traefik/compose.yml +106 -0
- package/apps/core/traefik/files/app-http-bypass-template.yml +31 -0
- package/apps/core/traefik/files/app-http-template.yml +18 -0
- package/apps/core/traefik/files/app-https-ssc-bypass-template.yml +36 -0
- package/apps/core/traefik/files/app-https-ssc-template.yml +23 -0
- package/apps/core/traefik/files/chain-basic-auth.yml +9 -0
- package/apps/core/traefik/files/chain-nextcloud.yml +8 -0
- package/apps/core/traefik/files/chain-no-auth.yml +8 -0
- package/apps/core/traefik/files/domain-passthrough-template.yml +15 -0
- package/apps/core/traefik/files/labels-auth-bypass-template.yml +6 -0
- package/apps/core/traefik/files/labels-template.yml +10 -0
- package/apps/core/traefik/files/middlewares-basic-auth.yml +9 -0
- package/apps/core/traefik/files/middlewares-buffering.yml +9 -0
- package/apps/core/traefik/files/middlewares-compress.yml +4 -0
- package/apps/core/traefik/files/middlewares-crowdsec-bouncer.yml +13 -0
- package/apps/core/traefik/files/middlewares-nextcloud.yml +35 -0
- package/apps/core/traefik/files/middlewares-rate-limit.yml +6 -0
- package/apps/core/traefik/files/middlewares-secure-headers.yml +26 -0
- package/apps/core/traefik/files/t2_proxy_network.yml +8 -0
- package/apps/core/traefik/files/tls-opts.yml +19 -0
- package/apps/core/traefik/files/traefik-static-config-example.yml +97 -0
- package/apps/core/traefik/files/traefik.yml +123 -0
- package/apps/core/traefik/files/traefik_global_secrets_template.yml +4 -0
- package/apps/core/traefik/files/traefik_proxy_network.yml +8 -0
- package/apps/core/traefik/manifest.json +70 -0
- package/apps/manifest-schema.json +760 -0
- package/apps/official/adminer/compose.yml +14 -0
- package/apps/official/adminer/manifest.json +65 -0
- package/apps/official/airsonic-advanced/compose.yml +26 -0
- package/apps/official/airsonic-advanced/manifest.json +78 -0
- package/apps/official/apps.json +146 -0
- package/apps/official/audiobookshelf/compose.yml +20 -0
- package/apps/official/audiobookshelf/manifest.json +65 -0
- package/apps/official/autobrr/autobrr-postgresql.yml +24 -0
- package/apps/official/autobrr/compose.yml +27 -0
- package/apps/official/autobrr/manifest.json +101 -0
- package/apps/official/baikal/compose.yml +17 -0
- package/apps/official/baikal/manifest.json +65 -0
- package/apps/official/bazarr/compose.yml +23 -0
- package/apps/official/bazarr/manifest.json +65 -0
- package/apps/official/beets/compose.yml +24 -0
- package/apps/official/beets/manifest.json +65 -0
- package/apps/official/bookstack/bookstack-mariadb.yml +26 -0
- package/apps/official/bookstack/compose.yml +31 -0
- package/apps/official/bookstack/manifest.json +113 -0
- package/apps/official/boxarr/compose.yml +18 -0
- package/apps/official/boxarr/manifest.json +65 -0
- package/apps/official/cadvisor/compose.yml +23 -0
- package/apps/official/cadvisor/files/pre-install.sh +10 -0
- package/apps/official/cadvisor/manifest.json +69 -0
- package/apps/official/calibre/compose.yml +27 -0
- package/apps/official/calibre/manifest.json +87 -0
- package/apps/official/calibre-web/compose.yml +23 -0
- package/apps/official/calibre-web/manifest.json +74 -0
- package/apps/official/change-detection/compose.yml +22 -0
- package/apps/official/change-detection/manifest.json +65 -0
- package/apps/official/chromium/compose.yml +25 -0
- package/apps/official/chromium/manifest.json +82 -0
- package/apps/official/cleanuparr/compose.yml +30 -0
- package/apps/official/cleanuparr/manifest.json +65 -0
- package/apps/official/cloud-commander/compose.yml +24 -0
- package/apps/official/cloud-commander/manifest.json +65 -0
- package/apps/official/cloudflare-tunnel/compose.yml +26 -0
- package/apps/official/cloudflare-tunnel/files/pre-install.sh +7 -0
- package/apps/official/cloudflare-tunnel/manifest.json +70 -0
- package/apps/official/cyberchef/compose.yml +14 -0
- package/apps/official/cyberchef/manifest.json +65 -0
- package/apps/official/dashy/compose.yml +27 -0
- package/apps/official/dashy/files/starter-conf.yml +45 -0
- package/apps/official/dashy/manifest.json +72 -0
- package/apps/official/ddns-updater/compose.yml +28 -0
- package/apps/official/ddns-updater/files/config.json +14 -0
- package/apps/official/ddns-updater/files/pre-install.sh +18 -0
- package/apps/official/ddns-updater/manifest.json +71 -0
- package/apps/official/deunhealth/compose.yml +17 -0
- package/apps/official/deunhealth/manifest.json +46 -0
- package/apps/official/digikam/compose.yml +23 -0
- package/apps/official/digikam/manifest.json +85 -0
- package/apps/official/dispatcharr/compose.yml +39 -0
- package/apps/official/dispatcharr/manifest.json +86 -0
- package/apps/official/docker-gc/compose.yml +25 -0
- package/apps/official/docker-gc/files/docker-gc-exclude +9 -0
- package/apps/official/docker-gc/files/pre-install.sh +22 -0
- package/apps/official/docker-gc/manifest.json +54 -0
- package/apps/official/dockhand/compose.yml +24 -0
- package/apps/official/dockhand/dockhand-postgresql.yml +24 -0
- package/apps/official/dockhand/manifest.json +105 -0
- package/apps/official/dockpeek/compose.yml +20 -0
- package/apps/official/dockpeek/manifest.json +95 -0
- package/apps/official/dockwatch/compose.yml +31 -0
- package/apps/official/dockwatch/manifest.json +65 -0
- package/apps/official/dokuwiki/compose.yml +21 -0
- package/apps/official/dokuwiki/manifest.json +81 -0
- package/apps/official/double-commander/compose.yml +26 -0
- package/apps/official/double-commander/manifest.json +83 -0
- package/apps/official/dozzle/compose.yml +23 -0
- package/apps/official/dozzle/manifest.json +65 -0
- package/apps/official/dozzle-agent/compose.yml +26 -0
- package/apps/official/dozzle-agent/manifest.json +71 -0
- package/apps/official/dweebui/compose.yml +21 -0
- package/apps/official/dweebui/manifest.json +81 -0
- package/apps/official/emby/compose.yml +29 -0
- package/apps/official/emby/manifest.json +98 -0
- package/apps/official/esphome/compose.yml +20 -0
- package/apps/official/esphome/manifest.json +65 -0
- package/apps/official/filezilla/compose.yml +23 -0
- package/apps/official/filezilla/manifest.json +82 -0
- package/apps/official/flame/compose.yml +21 -0
- package/apps/official/flame/manifest.json +73 -0
- package/apps/official/flaresolverr/compose.yml +19 -0
- package/apps/official/flaresolverr/manifest.json +75 -0
- package/apps/official/flowise/compose.yml +46 -0
- package/apps/official/flowise/flowise-postgresql.yml +24 -0
- package/apps/official/flowise/flowise-redis.yml +23 -0
- package/apps/official/flowise/manifest.json +125 -0
- package/apps/official/freshrss/compose.yml +20 -0
- package/apps/official/freshrss/manifest.json +65 -0
- package/apps/official/funkwhale/compose.yml +24 -0
- package/apps/official/funkwhale/files/post-install.sh +8 -0
- package/apps/official/funkwhale/manifest.json +69 -0
- package/apps/official/gamevault/compose.yml +26 -0
- package/apps/official/gamevault/gamevault-postgresql.yml +24 -0
- package/apps/official/gamevault/manifest.json +101 -0
- package/apps/official/glances/compose.yml +26 -0
- package/apps/official/glances/files/glances.conf +771 -0
- package/apps/official/glances/manifest.json +72 -0
- package/apps/official/gluetun/compose.yml +33 -0
- package/apps/official/gluetun/files/post-install.sh +78 -0
- package/apps/official/gluetun/manifest.json +88 -0
- package/apps/official/gonic/compose.yml +26 -0
- package/apps/official/gonic/manifest.json +78 -0
- package/apps/official/gptwol/compose.yml +23 -0
- package/apps/official/gptwol/manifest.json +81 -0
- package/apps/official/grafana/compose.yml +19 -0
- package/apps/official/grafana/manifest.json +81 -0
- package/apps/official/grocy/compose.yml +20 -0
- package/apps/official/grocy/manifest.json +74 -0
- package/apps/official/guacamole/compose.yml +26 -0
- package/apps/official/guacamole/guacamole-mariadb.yml +26 -0
- package/apps/official/guacamole/guacd.yml +12 -0
- package/apps/official/guacamole/hooks/post-install.sh +60 -0
- package/apps/official/guacamole/manifest.json +131 -0
- package/apps/official/heimdall/compose.yml +20 -0
- package/apps/official/heimdall/manifest.json +65 -0
- package/apps/official/homarr/compose.yml +22 -0
- package/apps/official/homarr/manifest.json +73 -0
- package/apps/official/homebridge/compose.yml +13 -0
- package/apps/official/homebridge/manifest.json +66 -0
- package/apps/official/homepage/compose.yml +22 -0
- package/apps/official/homepage/manifest.json +65 -0
- package/apps/official/homer/compose.yml +20 -0
- package/apps/official/homer/manifest.json +65 -0
- package/apps/official/immich/compose.yml +35 -0
- package/apps/official/immich/immich-machine-learning.yml +21 -0
- package/apps/official/immich/immich-postgresql.yml +30 -0
- package/apps/official/immich/immich-redis.yml +23 -0
- package/apps/official/immich/manifest.json +135 -0
- package/apps/official/influxdb/compose.yml +17 -0
- package/apps/official/influxdb/manifest.json +65 -0
- package/apps/official/it-tools/compose.yml +14 -0
- package/apps/official/it-tools/manifest.json +65 -0
- package/apps/official/jackett/compose.yml +21 -0
- package/apps/official/jackett/manifest.json +65 -0
- package/apps/official/jellyfin/compose.yml +27 -0
- package/apps/official/jellyfin/manifest.json +89 -0
- package/apps/official/jellyseerr/compose.yml +19 -0
- package/apps/official/jellyseerr/manifest.json +65 -0
- package/apps/official/kasm/compose.yml +27 -0
- package/apps/official/kasm/manifest.json +115 -0
- package/apps/official/kavita/compose.yml +21 -0
- package/apps/official/kavita/manifest.json +65 -0
- package/apps/official/kometa/compose.yml +23 -0
- package/apps/official/kometa/manifest.json +56 -0
- package/apps/official/komga/compose.yml +22 -0
- package/apps/official/komga/manifest.json +65 -0
- package/apps/official/langfuse/compose.yml +64 -0
- package/apps/official/langfuse/files/pre-install.sh +178 -0
- package/apps/official/langfuse/langfuse-clickhouse.yml +25 -0
- package/apps/official/langfuse/langfuse-minio.yml +25 -0
- package/apps/official/langfuse/langfuse-postgresql.yml +26 -0
- package/apps/official/langfuse/langfuse-redis.yml +22 -0
- package/apps/official/langfuse/langfuse-worker.yml +50 -0
- package/apps/official/langfuse/manifest.json +201 -0
- package/apps/official/lidarr/compose.yml +25 -0
- package/apps/official/lidarr/manifest.json +65 -0
- package/apps/official/lollypop/compose.yml +26 -0
- package/apps/official/lollypop/manifest.json +83 -0
- package/apps/official/maintainerr/compose.yml +20 -0
- package/apps/official/maintainerr/manifest.json +72 -0
- package/apps/official/mariadb/compose.yml +27 -0
- package/apps/official/mariadb/manifest.json +74 -0
- package/apps/official/mosquitto/compose.yml +24 -0
- package/apps/official/mosquitto/files/mosquitto.conf +15 -0
- package/apps/official/mosquitto/files/passwd +0 -0
- package/apps/official/mosquitto/files/post-install.sh +23 -0
- package/apps/official/mosquitto/manifest.json +123 -0
- package/apps/official/mqttx-web/compose.yml +14 -0
- package/apps/official/mqttx-web/manifest.json +74 -0
- package/apps/official/mylar3/compose.yml +22 -0
- package/apps/official/mylar3/manifest.json +65 -0
- package/apps/official/n8n/compose.yml +29 -0
- package/apps/official/n8n/files/pre-install.sh +26 -0
- package/apps/official/n8n/manifest.json +103 -0
- package/apps/official/n8n/n8n-postgresql.yml +26 -0
- package/apps/official/navidrome/compose.yml +26 -0
- package/apps/official/navidrome/manifest.json +65 -0
- package/apps/official/netdata/compose.yml +28 -0
- package/apps/official/netdata/manifest.json +66 -0
- package/apps/official/nextcloud/compose.yml +38 -0
- package/apps/official/nextcloud/manifest.json +159 -0
- package/apps/official/nextcloud/nextcloud-mariadb.yml +29 -0
- package/apps/official/nextcloud/nextcloud-redis.yml +20 -0
- package/apps/official/node-exporter/compose.yml +23 -0
- package/apps/official/node-exporter/manifest.json +65 -0
- package/apps/official/node-red/compose.yml +16 -0
- package/apps/official/node-red/manifest.json +72 -0
- package/apps/official/notifiarr/compose.yml +23 -0
- package/apps/official/notifiarr/manifest.json +75 -0
- package/apps/official/nzbget/compose.yml +23 -0
- package/apps/official/nzbget/manifest.json +74 -0
- package/apps/official/ollama/compose.yml +17 -0
- package/apps/official/ollama/manifest.json +85 -0
- package/apps/official/ombi/compose.yml +21 -0
- package/apps/official/ombi/manifest.json +65 -0
- package/apps/official/open-webui/compose.yml +21 -0
- package/apps/official/open-webui/manifest.json +75 -0
- package/apps/official/openhands/compose.yml +23 -0
- package/apps/official/openhands/manifest.json +65 -0
- package/apps/official/organizr/compose.yml +19 -0
- package/apps/official/organizr/manifest.json +78 -0
- package/apps/official/overseerr/compose.yml +20 -0
- package/apps/official/overseerr/manifest.json +65 -0
- package/apps/official/paperless-ai/compose.yml +16 -0
- package/apps/official/paperless-ai/manifest.json +74 -0
- package/apps/official/paperless-ngx/compose.yml +51 -0
- package/apps/official/paperless-ngx/gotenberg.yml +18 -0
- package/apps/official/paperless-ngx/manifest.json +179 -0
- package/apps/official/paperless-ngx/paperless-ngx-mariadb.yml +26 -0
- package/apps/official/paperless-ngx/paperless-ngx-redis.yml +23 -0
- package/apps/official/paperless-ngx/tika.yml +12 -0
- package/apps/official/pdfding/compose.yml +32 -0
- package/apps/official/pdfding/files/post-install.sh +55 -0
- package/apps/official/pdfding/manifest.json +120 -0
- package/apps/official/pdfding/pdfding-postgresql.yml +24 -0
- package/apps/official/pgadmin/compose.yml +17 -0
- package/apps/official/pgadmin/manifest.json +80 -0
- package/apps/official/phpmyadmin/compose.yml +22 -0
- package/apps/official/phpmyadmin/manifest.json +65 -0
- package/apps/official/pihole/compose.yml +41 -0
- package/apps/official/pihole/manifest.json +89 -0
- package/apps/official/piwigo/compose.yml +22 -0
- package/apps/official/piwigo/manifest.json +65 -0
- package/apps/official/plex/compose.yml +39 -0
- package/apps/official/plex/files/pre-install.sh +24 -0
- package/apps/official/plex/manifest.json +109 -0
- package/apps/official/portainer/compose.yml +22 -0
- package/apps/official/portainer/manifest.json +91 -0
- package/apps/official/postgresql/compose.yml +28 -0
- package/apps/official/postgresql/manifest.json +89 -0
- package/apps/official/privatebin/compose.yml +20 -0
- package/apps/official/privatebin/files/conf.php +90 -0
- package/apps/official/privatebin/manifest.json +82 -0
- package/apps/official/projectsend/compose.yml +21 -0
- package/apps/official/projectsend/manifest.json +72 -0
- package/apps/official/prometheus/compose.yml +25 -0
- package/apps/official/prometheus/files/prometheus.yml +3 -0
- package/apps/official/prometheus/manifest.json +79 -0
- package/apps/official/prowlarr/compose.yml +22 -0
- package/apps/official/prowlarr/manifest.json +65 -0
- package/apps/official/pulse/compose.yml +28 -0
- package/apps/official/pulse/files/post-install.sh +29 -0
- package/apps/official/pulse/manifest.json +78 -0
- package/apps/official/qbittorrent/compose.yml +22 -0
- package/apps/official/qbittorrent/files/pre-install.sh +5 -0
- package/apps/official/qbittorrent/files/qBittorrent.conf +39 -0
- package/apps/official/qbittorrent/manifest.json +96 -0
- package/apps/official/qbittorrent-vpn/compose.yml +26 -0
- package/apps/official/qbittorrent-vpn/files/post-install.sh +52 -0
- package/apps/official/qbittorrent-vpn/files/pre-install.sh +10 -0
- package/apps/official/qbittorrent-vpn/files/qBittorrent.conf +39 -0
- package/apps/official/qbittorrent-vpn/manifest.json +108 -0
- package/apps/official/qdrant/compose.yml +15 -0
- package/apps/official/qdrant/manifest.json +82 -0
- package/apps/official/radarr/compose.yml +25 -0
- package/apps/official/radarr/manifest.json +65 -0
- package/apps/official/redis/compose.yml +26 -0
- package/apps/official/redis/manifest.json +73 -0
- package/apps/official/redis-commander/compose.yml +20 -0
- package/apps/official/redis-commander/manifest.json +65 -0
- package/apps/official/remmina/compose.yml +23 -0
- package/apps/official/remmina/manifest.json +84 -0
- package/apps/official/resilio-sync/compose.yml +23 -0
- package/apps/official/resilio-sync/manifest.json +74 -0
- package/apps/official/sabnzbd/compose.yml +23 -0
- package/apps/official/sabnzbd/files/post-install.sh +35 -0
- package/apps/official/sabnzbd/manifest.json +75 -0
- package/apps/official/scrutiny/compose.yml +25 -0
- package/apps/official/scrutiny/manifest.json +113 -0
- package/apps/official/scrutiny/scrutiny-influxdb.yml +28 -0
- package/apps/official/searxng/compose.yml +28 -0
- package/apps/official/searxng/files/limiter.toml +6 -0
- package/apps/official/searxng/files/pre-install.sh +25 -0
- package/apps/official/searxng/files/settings.yml +8 -0
- package/apps/official/searxng/manifest.json +88 -0
- package/apps/official/searxng/searxng-valkey.yml +26 -0
- package/apps/official/shellinabox/manifest.json +68 -0
- package/apps/official/smokeping/compose.yml +21 -0
- package/apps/official/smokeping/manifest.json +65 -0
- package/apps/official/sonarr/compose.yml +25 -0
- package/apps/official/sonarr/manifest.json +65 -0
- package/apps/official/speedtest-tracker/compose.yml +30 -0
- package/apps/official/speedtest-tracker/manifest.json +119 -0
- package/apps/official/speedtest-tracker/speedtest-tracker-mariadb.yml +24 -0
- package/apps/official/sshwifty/compose.yml +17 -0
- package/apps/official/sshwifty/files/pre-install.sh +34 -0
- package/apps/official/sshwifty/files/sshwifty.conf.json +36 -0
- package/apps/official/sshwifty/manifest.json +101 -0
- package/apps/official/stirling-pdf/compose.yml +23 -0
- package/apps/official/stirling-pdf/manifest.json +65 -0
- package/apps/official/supabase/compose.yml +39 -0
- package/apps/official/supabase/files/pre-install.sh +201 -0
- package/apps/official/supabase/files/volumes/api/kong.yml +221 -0
- package/apps/official/supabase/files/volumes/db/_supabase.sql +3 -0
- package/apps/official/supabase/files/volumes/db/jwt.sql +5 -0
- package/apps/official/supabase/files/volumes/db/logs.sql +6 -0
- package/apps/official/supabase/files/volumes/db/pooler.sql +6 -0
- package/apps/official/supabase/files/volumes/db/realtime.sql +4 -0
- package/apps/official/supabase/files/volumes/db/roles.sql +8 -0
- package/apps/official/supabase/files/volumes/db/webhooks.sql +208 -0
- package/apps/official/supabase/files/volumes/functions/hello/index.ts +6 -0
- package/apps/official/supabase/files/volumes/functions/main/index.ts +93 -0
- package/apps/official/supabase/files/volumes/logs/vector.yml +266 -0
- package/apps/official/supabase/files/volumes/pooler/pooler.exs +30 -0
- package/apps/official/supabase/manifest.json +327 -0
- package/apps/official/supabase/supabase-analytics.yml +32 -0
- package/apps/official/supabase/supabase-auth.yml +34 -0
- package/apps/official/supabase/supabase-db.yml +42 -0
- package/apps/official/supabase/supabase-functions.yml +24 -0
- package/apps/official/supabase/supabase-imgproxy.yml +25 -0
- package/apps/official/supabase/supabase-kong.yml +30 -0
- package/apps/official/supabase/supabase-meta.yml +20 -0
- package/apps/official/supabase/supabase-pooler.yml +45 -0
- package/apps/official/supabase/supabase-realtime.yml +42 -0
- package/apps/official/supabase/supabase-rest.yml +21 -0
- package/apps/official/supabase/supabase-storage.yml +36 -0
- package/apps/official/supabase/supabase-vector.yml +23 -0
- package/apps/official/tailscale/compose.yml +23 -0
- package/apps/official/tailscale/manifest.json +65 -0
- package/apps/official/tautulli/compose.yml +21 -0
- package/apps/official/tautulli/files/pre-install.sh +9 -0
- package/apps/official/tautulli/manifest.json +69 -0
- package/apps/official/termix/compose.yml +18 -0
- package/apps/official/termix/manifest.json +65 -0
- package/apps/official/teslamate/teslamate-grafana.yml +22 -0
- package/apps/official/teslamate/teslamate-mosquitto.yml +27 -0
- package/apps/official/teslamate/teslamate-pgsql.yml +24 -0
- package/apps/official/teslamate/teslamate.yml +27 -0
- package/apps/official/thelounge/compose.yml +20 -0
- package/apps/official/thelounge/manifest.json +65 -0
- package/apps/official/theme-park/compose.yml +21 -0
- package/apps/official/theme-park/manifest.json +74 -0
- package/apps/official/traefik-access-log/compose.yml +14 -0
- package/apps/official/traefik-access-log/manifest.json +59 -0
- package/apps/official/traefik-certs-dumper/compose.yml +18 -0
- package/apps/official/traefik-certs-dumper/manifest.json +56 -0
- package/apps/official/traefik-error-log/compose.yml +14 -0
- package/apps/official/traefik-error-log/manifest.json +59 -0
- package/apps/official/transmission/compose.yml +33 -0
- package/apps/official/transmission/manifest.json +90 -0
- package/apps/official/trilium/compose.yml +19 -0
- package/apps/official/trilium/manifest.json +65 -0
- package/apps/official/uptime-kuma/compose.yml +17 -0
- package/apps/official/uptime-kuma/manifest.json +65 -0
- package/apps/official/vaultwarden/compose.yml +20 -0
- package/apps/official/vaultwarden/files/pre-install.sh +27 -0
- package/apps/official/vaultwarden/manifest.json +86 -0
- package/apps/official/vikunja/compose.yml +30 -0
- package/apps/official/vikunja/manifest.json +123 -0
- package/apps/official/vikunja/vikunja-mariadb.yml +26 -0
- package/apps/official/viniplay/compose.yml +18 -0
- package/apps/official/viniplay/files/pre-install.sh +9 -0
- package/apps/official/viniplay/manifest.json +63 -0
- package/apps/official/vscode/compose.yml +28 -0
- package/apps/official/vscode/manifest.json +65 -0
- package/apps/official/wallos/compose.yml +19 -0
- package/apps/official/wallos/manifest.json +65 -0
- package/apps/official/weaviate/compose.yml +28 -0
- package/apps/official/weaviate/manifest.json +82 -0
- package/apps/official/wg-easy/compose.yml +31 -0
- package/apps/official/wg-easy/files/post-install.sh +32 -0
- package/apps/official/wg-easy/manifest.json +118 -0
- package/apps/official/wikidocs/compose.yml +19 -0
- package/apps/official/wikidocs/manifest.json +65 -0
- package/apps/official/wud/compose.yml +22 -0
- package/apps/official/wud/manifest.json +74 -0
- package/apps/official/xpipe-webtop/compose.yml +21 -0
- package/apps/official/xpipe-webtop/manifest.json +83 -0
- package/apps/official/zerotier/compose.yml +17 -0
- package/apps/official/zerotier/files/post-install.sh +23 -0
- package/apps/official/zerotier/manifest.json +78 -0
- package/apps/unofficial/9router/compose.yml +30 -0
- package/apps/unofficial/9router/files/oauth-fix.patch +32 -0
- package/apps/unofficial/9router/files/pre-install.sh +87 -0
- package/apps/unofficial/9router/manifest.json +144 -0
- package/apps/unofficial/openclaw/Dockerfile.full +79 -0
- package/apps/unofficial/openclaw/compose.yml +60 -0
- package/apps/unofficial/openclaw/files/post-install.sh +316 -0
- package/apps/unofficial/openclaw/files/pre-install.sh +174 -0
- package/apps/unofficial/openclaw/manifest.json +178 -0
- package/apps/version_pins +67 -0
- package/bin/deployrr-init.sh +49 -0
- package/latest-version +1 -0
- package/package.json +21 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Page meta info, like heading, footer text and nav links
|
|
2
|
+
pageInfo:
|
|
3
|
+
title: Dashy
|
|
4
|
+
description: Welcome to your new dashboard!
|
|
5
|
+
navLinks:
|
|
6
|
+
- title: GitHub
|
|
7
|
+
path: https://github.com/Lissy93/dashy
|
|
8
|
+
- title: Documentation
|
|
9
|
+
path: https://dashy.to/docs
|
|
10
|
+
|
|
11
|
+
# Optional app settings and configuration
|
|
12
|
+
appConfig:
|
|
13
|
+
theme: colorful
|
|
14
|
+
|
|
15
|
+
# Main content - An array of sections, each containing an array of items
|
|
16
|
+
sections:
|
|
17
|
+
- name: Getting Started
|
|
18
|
+
icon: fas fa-rocket
|
|
19
|
+
items:
|
|
20
|
+
- title: Dashy Live
|
|
21
|
+
description: Development a project management links for Dashy
|
|
22
|
+
icon: https://i.ibb.co/qWWpD0v/astro-dab-128.png
|
|
23
|
+
url: https://live.dashy.to/
|
|
24
|
+
target: newtab
|
|
25
|
+
- title: GitHub
|
|
26
|
+
description: Source Code, Issues and Pull Requests
|
|
27
|
+
url: https://github.com/lissy93/dashy
|
|
28
|
+
icon: favicon
|
|
29
|
+
- title: Docs
|
|
30
|
+
description: Configuring & Usage Documentation
|
|
31
|
+
provider: Dashy.to
|
|
32
|
+
icon: far fa-book
|
|
33
|
+
url: https://dashy.to/docs
|
|
34
|
+
- title: Showcase
|
|
35
|
+
description: See how others are using Dashy
|
|
36
|
+
url: https://github.com/Lissy93/dashy/blob/master/docs/showcase.md
|
|
37
|
+
icon: far fa-grin-hearts
|
|
38
|
+
- title: Config Guide
|
|
39
|
+
description: See full list of configuration options
|
|
40
|
+
url: https://github.com/Lissy93/dashy/blob/master/docs/configuring.md
|
|
41
|
+
icon: fas fa-wrench
|
|
42
|
+
- title: Support
|
|
43
|
+
description: Get help with Dashy, raise a bug, or get in contact
|
|
44
|
+
url: https://github.com/Lissy93/dashy/blob/master/.github/SUPPORT.md
|
|
45
|
+
icon: far fa-hands-helping
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "dashy",
|
|
7
|
+
"pname": "Dashy",
|
|
8
|
+
"description": "Dashy is a self-hostable personal dashboard with widgets, status checking, and a built-in editor. It provides a central place to monitor and access your homelab services.",
|
|
9
|
+
"descriptionShort": "Homelab dashboard",
|
|
10
|
+
"icon": "sh-dashy",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["dashboard", "monitoring", "widgets"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 8081,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites"],
|
|
28
|
+
"apps": ["socket-proxy"]
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"files": [
|
|
32
|
+
{
|
|
33
|
+
"source": "files/starter-conf.yml",
|
|
34
|
+
"dest": "$DOCKER_FOLDER/appdata/dashy/conf.yml"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
|
|
38
|
+
"traefik": {
|
|
39
|
+
"supported": true
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"dashboard": {
|
|
43
|
+
"enabled": true,
|
|
44
|
+
"location": "local",
|
|
45
|
+
"showStats": true,
|
|
46
|
+
"portVariable": "DASHY_PORT"
|
|
47
|
+
},
|
|
48
|
+
|
|
49
|
+
"env": {
|
|
50
|
+
"variables": [
|
|
51
|
+
{
|
|
52
|
+
"name": "DASHY_PORT",
|
|
53
|
+
"description": "Web interface port",
|
|
54
|
+
"type": "port",
|
|
55
|
+
"default": 8081,
|
|
56
|
+
"prompt": true,
|
|
57
|
+
"required": true,
|
|
58
|
+
"validation": {
|
|
59
|
+
"type": "port",
|
|
60
|
+
"min": 1,
|
|
61
|
+
"max": 65535
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
"status": {
|
|
68
|
+
"file": "06_dashy_status",
|
|
69
|
+
"successMessage": "Dashy Setup Completed",
|
|
70
|
+
"telemetryAction": "dashy"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Cloudflare DDNS - Dynamic DNS Updater
|
|
3
|
+
ddns-updater:
|
|
4
|
+
image: qmcgaw/ddns-updater
|
|
5
|
+
container_name: ddns-updater
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["core", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$DDNSUPDATER_PORT:8000"
|
|
14
|
+
volumes:
|
|
15
|
+
- $DOCKERDIR/appdata/ddns-updater:/updater/data
|
|
16
|
+
environment:
|
|
17
|
+
TZ: $TZ
|
|
18
|
+
PUID: $PUID
|
|
19
|
+
PGID: $PGID
|
|
20
|
+
PERIOD: 12h
|
|
21
|
+
UPDATE_COOLDOWN_PERIOD: 5m
|
|
22
|
+
PUBLICIP_DNS_TIMEOUT: 3s
|
|
23
|
+
HTTP_TIMEOUT: 10s
|
|
24
|
+
LISTENING_PORT: 8000
|
|
25
|
+
BACKUP_PERIOD: 96h
|
|
26
|
+
BACKUP_DIRECTORY: /updater/data/backups
|
|
27
|
+
LOG_LEVEL: info
|
|
28
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"settings": [
|
|
3
|
+
{
|
|
4
|
+
"provider": "cloudflare",
|
|
5
|
+
"zone_identifier": "CLOUDFLARE-ZONE-IDENTIFIER-PLACEHOLDER",
|
|
6
|
+
"domain": "CLOUDFLARE-DOMAIN-PLACEHOLDER",
|
|
7
|
+
"proxied": true,
|
|
8
|
+
"host": "@",
|
|
9
|
+
"ttl": 600,
|
|
10
|
+
"token": "CLOUDFLARE-API-TOKEN-PLACEHOLDER",
|
|
11
|
+
"ip_version": "ipv4"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Pre-install script for DDNS-Updater
|
|
3
|
+
# Copies config.json and replaces placeholders with actual values from secrets
|
|
4
|
+
|
|
5
|
+
APP_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
6
|
+
|
|
7
|
+
mkdir -p "$DOCKER_FOLDER/appdata/ddns-updater/backups"
|
|
8
|
+
|
|
9
|
+
# Copy config template
|
|
10
|
+
sudo cp "$APP_DIR/files/config.json" "$DOCKER_FOLDER/appdata/ddns-updater/config.json"
|
|
11
|
+
|
|
12
|
+
# Replace placeholders with actual values
|
|
13
|
+
CF_ZONE_ID=$(sudo cat "$DOCKER_FOLDER/secrets/cf_zone_identifier")
|
|
14
|
+
CF_API_TOKEN=$(sudo cat "$DOCKER_FOLDER/secrets/cf_dns_api_token")
|
|
15
|
+
|
|
16
|
+
sudo sed -i "s|CLOUDFLARE-ZONE-IDENTIFIER-PLACEHOLDER|${CF_ZONE_ID}|g" "$DOCKER_FOLDER/appdata/ddns-updater/config.json"
|
|
17
|
+
sudo sed -i "s|CLOUDFLARE-DOMAIN-PLACEHOLDER|${DOMAINNAME_1}|g" "$DOCKER_FOLDER/appdata/ddns-updater/config.json"
|
|
18
|
+
sudo sed -i "s|CLOUDFLARE-API-TOKEN-PLACEHOLDER|${CF_API_TOKEN}|g" "$DOCKER_FOLDER/appdata/ddns-updater/config.json"
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "ddns-updater",
|
|
7
|
+
"pname": "DDNS Updater",
|
|
8
|
+
"description": "DDNS Updater automatically updates DNS records for dynamic IP addresses, supporting multiple providers including Cloudflare.",
|
|
9
|
+
"descriptionShort": "Dynamic DNS updater",
|
|
10
|
+
"icon": "sh-ddns-updater",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["dns", "networking", "cloudflare"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["core", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 8000,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"env": {
|
|
32
|
+
"variables": [
|
|
33
|
+
{
|
|
34
|
+
"name": "DDNSUPDATER_PORT",
|
|
35
|
+
"description": "Web interface port",
|
|
36
|
+
"type": "port",
|
|
37
|
+
"default": 8000,
|
|
38
|
+
"prompt": true,
|
|
39
|
+
"required": true,
|
|
40
|
+
"validation": { "type": "port", "min": 1, "max": 65535 }
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"secrets": [
|
|
44
|
+
{
|
|
45
|
+
"name": "cf_zone_identifier",
|
|
46
|
+
"description": "Cloudflare Domain Zone ID (get it from the Cloudflare Domain Overview tab)",
|
|
47
|
+
"type": "prompt",
|
|
48
|
+
"addToCompose": false
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
|
|
53
|
+
"hooks": {
|
|
54
|
+
"preInstall": "files/pre-install.sh"
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
"traefik": { "supported": true },
|
|
58
|
+
|
|
59
|
+
"dashboard": {
|
|
60
|
+
"enabled": true,
|
|
61
|
+
"location": "local",
|
|
62
|
+
"showStats": true,
|
|
63
|
+
"portVariable": "DDNSUPDATER_PORT"
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
"status": {
|
|
67
|
+
"file": "06_ddns-updater_status",
|
|
68
|
+
"successMessage": "DDNS Updater Setup Completed",
|
|
69
|
+
"telemetryAction": "ddns-updater"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# DeUnhealth - Restart your unhealthy containers safely (e.g. containers depending on VPN and VPN reconnects)
|
|
3
|
+
deunhealth:
|
|
4
|
+
image: qmcgaw/deunhealth
|
|
5
|
+
container_name: deunhealth
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- socket_proxy
|
|
12
|
+
environment:
|
|
13
|
+
- LOG_LEVEL=info
|
|
14
|
+
- HEALTH_SERVER_ADDRESS=127.0.0.1:9999
|
|
15
|
+
- TZ=$TZ
|
|
16
|
+
- DOCKER_HOST
|
|
17
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "deunhealth",
|
|
7
|
+
"pname": "DeUnhealth",
|
|
8
|
+
"description": "DeUnhealth monitors Docker containers and automatically restarts unhealthy ones. Useful for containers depending on VPN connections that may reconnect.",
|
|
9
|
+
"descriptionShort": "Restart unhealthy containers",
|
|
10
|
+
"icon": "sh-docker",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["docker", "monitoring", "automation", "health"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["socket_proxy"],
|
|
21
|
+
"webui": false
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
"requirements": {
|
|
25
|
+
"prerequisites": ["prerequisites"],
|
|
26
|
+
"apps": ["socket-proxy"]
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
"traefik": {
|
|
30
|
+
"supported": false
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
"dashboard": {
|
|
34
|
+
"enabled": false
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
"env": {
|
|
38
|
+
"variables": []
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
"status": {
|
|
42
|
+
"file": "06_deunhealth_status",
|
|
43
|
+
"successMessage": "DeUnhealth Setup Completed",
|
|
44
|
+
"telemetryAction": "deunhealth"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Digikam - Photo Management
|
|
3
|
+
digikam:
|
|
4
|
+
image: ghcr.io/linuxserver/digikam
|
|
5
|
+
container_name: digikam
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: "unless-stopped"
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
# DEVICES-GPU-PLACEHOLDER-DO-NOT-DELETE
|
|
11
|
+
networks:
|
|
12
|
+
- default
|
|
13
|
+
ports:
|
|
14
|
+
- "$DIGIKAM_PORT:3000" # HTTP
|
|
15
|
+
# - 3001:3001 # HTTPS
|
|
16
|
+
volumes:
|
|
17
|
+
- $DOCKERDIR/appdata/digikam:/config
|
|
18
|
+
- $PHOTOSDIR:/data/photos
|
|
19
|
+
environment:
|
|
20
|
+
TZ: $TZ
|
|
21
|
+
PUID: $PUID
|
|
22
|
+
PGID: $PGID
|
|
23
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
"app": {
|
|
5
|
+
"sname": "digikam",
|
|
6
|
+
"pname": "DigiKam",
|
|
7
|
+
"description": "DigiKam is an advanced open-source digital photo management application. It provides comprehensive tools for organizing, editing, and sharing photos.",
|
|
8
|
+
"descriptionShort": "Open-source photo manager",
|
|
9
|
+
"icon": "sh-digikam",
|
|
10
|
+
"category": "official",
|
|
11
|
+
"menuNumber": "06",
|
|
12
|
+
"tags": [
|
|
13
|
+
"photos",
|
|
14
|
+
"images",
|
|
15
|
+
"media",
|
|
16
|
+
"management"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"deployment": {
|
|
20
|
+
"type": "single",
|
|
21
|
+
"compose": "compose.yml",
|
|
22
|
+
"profiles": [
|
|
23
|
+
"apps",
|
|
24
|
+
"all"
|
|
25
|
+
],
|
|
26
|
+
"networks": [
|
|
27
|
+
"default"
|
|
28
|
+
],
|
|
29
|
+
"webui": true,
|
|
30
|
+
"port": 3005,
|
|
31
|
+
"protocol": "http"
|
|
32
|
+
},
|
|
33
|
+
"requirements": {
|
|
34
|
+
"prerequisites": [
|
|
35
|
+
"prerequisites",
|
|
36
|
+
"photos_folder",
|
|
37
|
+
"add_gpu",
|
|
38
|
+
"appfolder_permission"
|
|
39
|
+
],
|
|
40
|
+
"apps": []
|
|
41
|
+
},
|
|
42
|
+
"gpu": {
|
|
43
|
+
"required": false,
|
|
44
|
+
"usage": "Hardware-accelerated rendering",
|
|
45
|
+
"vendors": {
|
|
46
|
+
"intel": {
|
|
47
|
+
"pattern": "dri"
|
|
48
|
+
},
|
|
49
|
+
"amd": {
|
|
50
|
+
"pattern": "dri"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"traefik": {
|
|
55
|
+
"supported": true
|
|
56
|
+
},
|
|
57
|
+
"dashboard": {
|
|
58
|
+
"enabled": true,
|
|
59
|
+
"location": "local",
|
|
60
|
+
"showStats": true,
|
|
61
|
+
"portVariable": "DIGIKAM_PORT"
|
|
62
|
+
},
|
|
63
|
+
"env": {
|
|
64
|
+
"variables": [
|
|
65
|
+
{
|
|
66
|
+
"name": "DIGIKAM_PORT",
|
|
67
|
+
"description": "Web interface port",
|
|
68
|
+
"type": "port",
|
|
69
|
+
"default": 3005,
|
|
70
|
+
"prompt": true,
|
|
71
|
+
"required": true,
|
|
72
|
+
"validation": {
|
|
73
|
+
"type": "port",
|
|
74
|
+
"min": 1,
|
|
75
|
+
"max": 65535
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"status": {
|
|
81
|
+
"file": "06_digikam_status",
|
|
82
|
+
"successMessage": "DigiKam Setup Completed",
|
|
83
|
+
"telemetryAction": "digikam"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Dispatcharr - IPTV and Stream Companion
|
|
3
|
+
dispatcharr:
|
|
4
|
+
image: ghcr.io/dispatcharr/dispatcharr:latest
|
|
5
|
+
container_name: dispatcharr
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: "no"
|
|
9
|
+
profiles: ["media", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
# DEVICES-GPU-PLACEHOLDER-DO-NOT-DELETE
|
|
13
|
+
# Uncomment the following lines for NVIDIA GPU support
|
|
14
|
+
# NVidia GPU support (requires NVIDIA Container Toolkit)
|
|
15
|
+
#deploy:
|
|
16
|
+
# resources:
|
|
17
|
+
# reservations:
|
|
18
|
+
# devices:
|
|
19
|
+
# - driver: nvidia
|
|
20
|
+
# count: all
|
|
21
|
+
# capabilities: [gpu]
|
|
22
|
+
ports:
|
|
23
|
+
- "$DISPATCHARR_PORT:9191"
|
|
24
|
+
# Uncomment to enable high priority for streaming (required if UWSGI_NICE_LEVEL < 0)
|
|
25
|
+
#cap_add:
|
|
26
|
+
# - SYS_NICE
|
|
27
|
+
environment:
|
|
28
|
+
- DISPATCHARR_ENV=aio
|
|
29
|
+
- REDIS_HOST=localhost
|
|
30
|
+
- CELERY_BROKER_URL=redis://localhost:6379/0
|
|
31
|
+
- DISPATCHARR_LOG_LEVEL=info
|
|
32
|
+
# Process Priority Configuration (Optional)
|
|
33
|
+
# Lower values = higher priority. Range: -20 (highest) to 19 (lowest)
|
|
34
|
+
# Negative values require cap_add: SYS_NICE (uncomment below)
|
|
35
|
+
#- UWSGI_NICE_LEVEL=-5 # uWSGI/FFmpeg/Streaming (default: 0, recommended: -5 for high priority)
|
|
36
|
+
#- CELERY_NICE_LEVEL=5 # Celery/EPG/Background tasks (default: 5, low priority)
|
|
37
|
+
volumes:
|
|
38
|
+
- $DOCKERDIR/appdata/dispatcharr:/data
|
|
39
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
"app": {
|
|
5
|
+
"sname": "dispatcharr",
|
|
6
|
+
"pname": "Dispatcharr",
|
|
7
|
+
"description": "Dispatcharr is an IPTV and stream companion that provides live TV streaming capabilities with EPG support and hardware acceleration.",
|
|
8
|
+
"descriptionShort": "IPTV and stream companion",
|
|
9
|
+
"icon": "sh-dispatcharr",
|
|
10
|
+
"category": "official",
|
|
11
|
+
"menuNumber": "06",
|
|
12
|
+
"tags": [
|
|
13
|
+
"media",
|
|
14
|
+
"iptv",
|
|
15
|
+
"streaming",
|
|
16
|
+
"tv"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"deployment": {
|
|
20
|
+
"type": "single",
|
|
21
|
+
"compose": "compose.yml",
|
|
22
|
+
"profiles": [
|
|
23
|
+
"media",
|
|
24
|
+
"all"
|
|
25
|
+
],
|
|
26
|
+
"networks": [
|
|
27
|
+
"default"
|
|
28
|
+
],
|
|
29
|
+
"webui": true,
|
|
30
|
+
"port": 9191,
|
|
31
|
+
"protocol": "http"
|
|
32
|
+
},
|
|
33
|
+
"requirements": {
|
|
34
|
+
"prerequisites": [
|
|
35
|
+
"prerequisites",
|
|
36
|
+
"add_gpu"
|
|
37
|
+
],
|
|
38
|
+
"apps": []
|
|
39
|
+
},
|
|
40
|
+
"gpu": {
|
|
41
|
+
"required": false,
|
|
42
|
+
"usage": "Hardware-accelerated transcoding",
|
|
43
|
+
"vendors": {
|
|
44
|
+
"intel": {
|
|
45
|
+
"pattern": "dri"
|
|
46
|
+
},
|
|
47
|
+
"amd": {
|
|
48
|
+
"pattern": "dri"
|
|
49
|
+
},
|
|
50
|
+
"nvidia": {
|
|
51
|
+
"pattern": "deploy"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"traefik": {
|
|
56
|
+
"supported": true
|
|
57
|
+
},
|
|
58
|
+
"dashboard": {
|
|
59
|
+
"enabled": true,
|
|
60
|
+
"location": "local",
|
|
61
|
+
"showStats": true,
|
|
62
|
+
"portVariable": "DISPATCHARR_PORT"
|
|
63
|
+
},
|
|
64
|
+
"env": {
|
|
65
|
+
"variables": [
|
|
66
|
+
{
|
|
67
|
+
"name": "DISPATCHARR_PORT",
|
|
68
|
+
"description": "Web interface port",
|
|
69
|
+
"type": "port",
|
|
70
|
+
"default": 9191,
|
|
71
|
+
"prompt": true,
|
|
72
|
+
"required": true,
|
|
73
|
+
"validation": {
|
|
74
|
+
"type": "port",
|
|
75
|
+
"min": 1,
|
|
76
|
+
"max": 65535
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
"status": {
|
|
82
|
+
"file": "06_dispatcharr_status",
|
|
83
|
+
"successMessage": "Dispatcharr Setup Completed",
|
|
84
|
+
"telemetryAction": "dispatcharr"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Docker-GC - Automatic Docker Garbage Collection
|
|
3
|
+
# Create docker-gc-exclude file
|
|
4
|
+
docker-gc:
|
|
5
|
+
image: clockworksoul/docker-gc-cron:latest
|
|
6
|
+
container_name: docker-gc
|
|
7
|
+
security_opt:
|
|
8
|
+
- no-new-privileges:true
|
|
9
|
+
restart: unless-stopped
|
|
10
|
+
profiles: ["apps", "all"]
|
|
11
|
+
networks:
|
|
12
|
+
- socket_proxy
|
|
13
|
+
volumes:
|
|
14
|
+
# - /var/run/docker.sock:/var/run/docker.sock # Use Docker Socket Proxy instead for improved security
|
|
15
|
+
- $DOCKERDIR/appdata/docker-gc/docker-gc-exclude:/etc/docker-gc-exclude
|
|
16
|
+
environment:
|
|
17
|
+
- CRON=0 0 0 * * ? # Everyday at midnight. Previously 0 0 * * *
|
|
18
|
+
- FORCE_IMAGE_REMOVAL=1
|
|
19
|
+
- FORCE_CONTAINER_REMOVAL=0
|
|
20
|
+
- GRACE_PERIOD_SECONDS=604800
|
|
21
|
+
- DRY_RUN=0
|
|
22
|
+
- CLEAN_UP_VOLUMES=1
|
|
23
|
+
- TZ=$TZ
|
|
24
|
+
- DOCKER_HOST
|
|
25
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# If there is a dependent image it seems that the docker-gc can only identify them
|
|
2
|
+
# using the image id
|
|
3
|
+
# If you pull them specifically it will use the tag otherwise it uses the imageid
|
|
4
|
+
#
|
|
5
|
+
# The file consists of the name of the image followed by the image id (can be either the short version or the long version)
|
|
6
|
+
#
|
|
7
|
+
####################################################################################################
|
|
8
|
+
|
|
9
|
+
clockworksoul/docker-gc-cron:latest
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Docker-GC pre-install hook
|
|
3
|
+
# Creates docker-gc-exclude file before container starts to prevent Docker from creating a directory
|
|
4
|
+
|
|
5
|
+
# Get the directory where this script is located (app/files/)
|
|
6
|
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
7
|
+
SOURCE_FILE="$SCRIPT_DIR/docker-gc-exclude"
|
|
8
|
+
|
|
9
|
+
# Create parent directory if it doesn't exist
|
|
10
|
+
sudo mkdir -p "$DOCKER_FOLDER/appdata/docker-gc"
|
|
11
|
+
|
|
12
|
+
# Copy docker-gc-exclude file to destination
|
|
13
|
+
# This must happen BEFORE the container starts, otherwise Docker creates a directory at this path
|
|
14
|
+
if [[ -f "$SOURCE_FILE" ]]; then
|
|
15
|
+
sudo cp "$SOURCE_FILE" "$DOCKER_FOLDER/appdata/docker-gc/docker-gc-exclude"
|
|
16
|
+
sudo chown "$USERNAME:$USERNAME" "$DOCKER_FOLDER/appdata/docker-gc/docker-gc-exclude"
|
|
17
|
+
sudo chmod 644 "$DOCKER_FOLDER/appdata/docker-gc/docker-gc-exclude"
|
|
18
|
+
dev_echo "Created docker-gc-exclude file at $DOCKER_FOLDER/appdata/docker-gc/docker-gc-exclude"
|
|
19
|
+
else
|
|
20
|
+
dev_echo "ERROR: Source file not found: $SOURCE_FILE"
|
|
21
|
+
return 1
|
|
22
|
+
fi
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "docker-gc",
|
|
7
|
+
"pname": "Docker Garbage Collection",
|
|
8
|
+
"description": "Docker GC automatically cleans up unused Docker images, containers, and volumes on a scheduled basis. It helps keep your Docker host clean and reclaim disk space.",
|
|
9
|
+
"descriptionShort": "Docker garbage collection",
|
|
10
|
+
"icon": "sh-docker",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["docker", "cleanup", "maintenance"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["socket_proxy"],
|
|
21
|
+
"webui": false,
|
|
22
|
+
"port": 0,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites"],
|
|
28
|
+
"apps": ["socket-proxy"]
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"hooks": {
|
|
32
|
+
"preInstall": "files/pre-install.sh"
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"traefik": {
|
|
36
|
+
"supported": false
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
"dashboard": {
|
|
40
|
+
"enabled": true,
|
|
41
|
+
"location": "other",
|
|
42
|
+
"showStats": true
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
"env": {
|
|
46
|
+
"variables": []
|
|
47
|
+
},
|
|
48
|
+
|
|
49
|
+
"status": {
|
|
50
|
+
"file": "06_dockergc_status",
|
|
51
|
+
"successMessage": "Docker Garbage Collection Setup Completed",
|
|
52
|
+
"telemetryAction": "docker-gc"
|
|
53
|
+
}
|
|
54
|
+
}
|