@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,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "homer",
|
|
7
|
+
"pname": "Homer",
|
|
8
|
+
"description": "Homer is a dead simple static HOMepage for your servER. It supports Docker integration for automatic service discovery.",
|
|
9
|
+
"descriptionShort": "Homelab dashboard",
|
|
10
|
+
"icon": "sh-homer",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["dashboard", "homepage", "launcher", "web"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["default", "socket_proxy"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 8081,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites"],
|
|
28
|
+
"apps": ["socket-proxy"]
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"traefik": {
|
|
32
|
+
"supported": true
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"dashboard": {
|
|
36
|
+
"enabled": true,
|
|
37
|
+
"location": "local",
|
|
38
|
+
"showStats": true,
|
|
39
|
+
"portVariable": "HOMER_PORT"
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"env": {
|
|
43
|
+
"variables": [
|
|
44
|
+
{
|
|
45
|
+
"name": "HOMER_PORT",
|
|
46
|
+
"description": "Web interface port",
|
|
47
|
+
"type": "port",
|
|
48
|
+
"default": 8081,
|
|
49
|
+
"prompt": true,
|
|
50
|
+
"required": true,
|
|
51
|
+
"validation": {
|
|
52
|
+
"type": "port",
|
|
53
|
+
"min": 1,
|
|
54
|
+
"max": 65535
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
"status": {
|
|
61
|
+
"file": "06_homer_status",
|
|
62
|
+
"successMessage": "Homer Setup Completed",
|
|
63
|
+
"telemetryAction": "homer"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Immich - Self-hosted Photo and Video Management
|
|
3
|
+
immich:
|
|
4
|
+
container_name: immich
|
|
5
|
+
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
depends_on:
|
|
11
|
+
immich-postgresql:
|
|
12
|
+
condition: service_healthy
|
|
13
|
+
immich-redis:
|
|
14
|
+
condition: service_healthy
|
|
15
|
+
immich-machine-learning:
|
|
16
|
+
condition: service_started
|
|
17
|
+
# extends:
|
|
18
|
+
# file: hwaccel.transcoding.yml
|
|
19
|
+
# service: nvenc # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
|
20
|
+
healthcheck:
|
|
21
|
+
disable: false
|
|
22
|
+
networks:
|
|
23
|
+
- default
|
|
24
|
+
ports:
|
|
25
|
+
- $IMMICH_PORT:2283
|
|
26
|
+
volumes:
|
|
27
|
+
- ${IMMICH_FOLDER}:/usr/src/app/upload
|
|
28
|
+
- /etc/localtime:/etc/localtime:ro
|
|
29
|
+
environment:
|
|
30
|
+
DB_PASSWORD: ${IMMICH_POSTGRESQL_PASSWORD}
|
|
31
|
+
DB_HOSTNAME: immich-postgresql
|
|
32
|
+
DB_USERNAME: immich_db_user
|
|
33
|
+
DB_DATABASE_NAME: immich
|
|
34
|
+
REDIS_HOSTNAME: immich-redis
|
|
35
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Immich Machine Learning - ML Service for Immich
|
|
3
|
+
# For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
|
|
4
|
+
# Example tag: ${IMMICHMACHINELEARNING_VERSION_PIN}-cuda
|
|
5
|
+
immich-machine-learning:
|
|
6
|
+
container_name: immich-machine-learning
|
|
7
|
+
image: ghcr.io/immich-app/immich-machine-learning:${IMMICHMACHINELEARNING_VERSION_PIN}
|
|
8
|
+
security_opt:
|
|
9
|
+
- no-new-privileges:true
|
|
10
|
+
restart: unless-stopped
|
|
11
|
+
profiles: ["apps", "all"]
|
|
12
|
+
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
|
|
13
|
+
# file: hwaccel.ml.yml
|
|
14
|
+
# service: cuda # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
|
|
15
|
+
healthcheck:
|
|
16
|
+
disable: false
|
|
17
|
+
networks:
|
|
18
|
+
- default
|
|
19
|
+
volumes:
|
|
20
|
+
- $DOCKERDIR/appdata/immich-machine-learning:/cache
|
|
21
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Immich PostgreSQL - Dedicated Database for Immich
|
|
3
|
+
# Uses VectorChord for improved vector search performance
|
|
4
|
+
immich-postgresql:
|
|
5
|
+
container_name: immich-postgresql
|
|
6
|
+
image: ghcr.io/immich-app/postgres:${IMMICHPOSTGRESQL_VERSION_PIN}
|
|
7
|
+
security_opt:
|
|
8
|
+
- no-new-privileges:true
|
|
9
|
+
restart: unless-stopped
|
|
10
|
+
profiles: ["apps", "all"]
|
|
11
|
+
healthcheck:
|
|
12
|
+
test: >-
|
|
13
|
+
pg_isready --dbname="immich" --username="immich_db_user" || exit 1;
|
|
14
|
+
Chksum="$$(psql --dbname="immich" --username="immich_db_user" --tuples-only --no-align
|
|
15
|
+
--command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')";
|
|
16
|
+
echo "checksum failure count is $$Chksum";
|
|
17
|
+
[ "$$Chksum" = '0' ] || exit 1
|
|
18
|
+
interval: 5m
|
|
19
|
+
start_interval: 30s
|
|
20
|
+
start_period: 5m
|
|
21
|
+
networks:
|
|
22
|
+
- default
|
|
23
|
+
environment:
|
|
24
|
+
POSTGRES_PASSWORD: $IMMICH_POSTGRESQL_PASSWORD
|
|
25
|
+
POSTGRES_USER: immich_db_user
|
|
26
|
+
POSTGRES_DB: immich
|
|
27
|
+
POSTGRES_INITDB_ARGS: '--data-checksums'
|
|
28
|
+
volumes:
|
|
29
|
+
- $DOCKERDIR/appdata/immich-postgresql:/var/lib/postgresql/data
|
|
30
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Immich Redis - Dedicated Cache for Immich
|
|
3
|
+
immich-redis:
|
|
4
|
+
container_name: immich-redis
|
|
5
|
+
image: redis:${IMMICHREDIS_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
command: redis-server --save "" --maxmemory 256mb --appendonly no --maxmemory-policy allkeys-lru
|
|
11
|
+
healthcheck:
|
|
12
|
+
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
|
|
13
|
+
start_period: 20s
|
|
14
|
+
interval: 30s
|
|
15
|
+
retries: 5
|
|
16
|
+
timeout: 3s
|
|
17
|
+
networks:
|
|
18
|
+
- default
|
|
19
|
+
deploy:
|
|
20
|
+
resources:
|
|
21
|
+
limits:
|
|
22
|
+
memory: 256MB
|
|
23
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "immich",
|
|
7
|
+
"pname": "Immich",
|
|
8
|
+
"description": "Immich is a self-hosted photo and video management solution. It provides features like automatic backup, smart search, facial recognition, and sharing capabilities. This installation uses dedicated PostgreSQL (with VectorChord), Redis, and Machine Learning containers for better isolation and performance.",
|
|
9
|
+
"descriptionShort": "Photo/video server",
|
|
10
|
+
"icon": "sh-immich",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["photos", "videos", "backup", "gallery", "ai", "machine-learning"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "multicontainer",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 2283,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"dependencies": [
|
|
27
|
+
{
|
|
28
|
+
"sname": "immich-postgresql",
|
|
29
|
+
"pname": "Immich PostgreSQL",
|
|
30
|
+
"compose": "immich-postgresql.yml",
|
|
31
|
+
"installOrder": 1,
|
|
32
|
+
"waitForHealthy": true,
|
|
33
|
+
"required": true,
|
|
34
|
+
"description": "Dedicated PostgreSQL database with VectorChord for Immich"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"sname": "immich-redis",
|
|
38
|
+
"pname": "Immich Redis",
|
|
39
|
+
"compose": "immich-redis.yml",
|
|
40
|
+
"installOrder": 2,
|
|
41
|
+
"waitForHealthy": true,
|
|
42
|
+
"required": true,
|
|
43
|
+
"description": "Dedicated Redis cache for Immich"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"sname": "immich-machine-learning",
|
|
47
|
+
"pname": "Immich Machine Learning",
|
|
48
|
+
"compose": "immich-machine-learning.yml",
|
|
49
|
+
"installOrder": 3,
|
|
50
|
+
"waitForHealthy": false,
|
|
51
|
+
"required": true,
|
|
52
|
+
"description": "Machine Learning service for facial recognition and smart search"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
|
|
56
|
+
"requirements": {
|
|
57
|
+
"prerequisites": ["prerequisites", "immich_folder"],
|
|
58
|
+
"apps": []
|
|
59
|
+
},
|
|
60
|
+
|
|
61
|
+
"preInstall": {
|
|
62
|
+
"dialog": {
|
|
63
|
+
"type": "info",
|
|
64
|
+
"title": "Hardware Acceleration",
|
|
65
|
+
"message": "\\n\\Z1NOTE!\\Zn\\n\\nDeployrr does not support hardware acceleration for Immich.\\n\\n\\Z4ML Hardware Acceleration:\\Zn\\nYou will need to manually configure hardware acceleration for Immich Machine Learning.\\nReference: https://immich.app/docs/features/ml-hardware-acceleration\\n\\n\\Z4Video Hardware Transcoding:\\Zn\\nYou will need to manually configure hardware transcoding for video processing.\\nReference: https://immich.app/docs/features/hardware-transcoding/"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
"database": {
|
|
70
|
+
"type": "postgresql",
|
|
71
|
+
"containerSname": "immich-postgresql",
|
|
72
|
+
"name": "immich",
|
|
73
|
+
"user": "immich_db_user",
|
|
74
|
+
"passwordVariable": "IMMICH_POSTGRESQL_PASSWORD",
|
|
75
|
+
"host": "immich-postgresql",
|
|
76
|
+
"port": 5432
|
|
77
|
+
},
|
|
78
|
+
|
|
79
|
+
"traefik": {
|
|
80
|
+
"supported": true
|
|
81
|
+
},
|
|
82
|
+
|
|
83
|
+
"dashboard": {
|
|
84
|
+
"enabled": true,
|
|
85
|
+
"location": "local",
|
|
86
|
+
"showStats": true,
|
|
87
|
+
"portVariable": "IMMICH_PORT"
|
|
88
|
+
},
|
|
89
|
+
|
|
90
|
+
"env": {
|
|
91
|
+
"variables": [
|
|
92
|
+
{
|
|
93
|
+
"name": "IMMICH_PORT",
|
|
94
|
+
"description": "Web interface port",
|
|
95
|
+
"type": "port",
|
|
96
|
+
"default": 2283,
|
|
97
|
+
"prompt": true,
|
|
98
|
+
"required": true,
|
|
99
|
+
"validation": { "type": "port", "min": 1, "max": 65535 }
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "IMMICH_POSTGRESQL_PASSWORD",
|
|
103
|
+
"description": "PostgreSQL database password (auto-generated)",
|
|
104
|
+
"type": "password",
|
|
105
|
+
"generate": "random",
|
|
106
|
+
"length": 32,
|
|
107
|
+
"prompt": false,
|
|
108
|
+
"required": true
|
|
109
|
+
}
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
|
|
113
|
+
"postInstall": {
|
|
114
|
+
"messages": [
|
|
115
|
+
{
|
|
116
|
+
"type": "note",
|
|
117
|
+
"text": "Immich uses dedicated containers: \\Z5immich-postgresql\\Zn, \\Z5immich-redis\\Zn, and \\Z5immich-machine-learning\\Zn."
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"type": "note",
|
|
121
|
+
"text": "Uploads folder: \\Z4$IMMICH_FOLDER\\Zn - All photos and videos are stored here."
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": "note",
|
|
125
|
+
"text": "Database password is stored in \\Z4$DOCKER_FOLDER/.env\\Zn."
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
|
|
130
|
+
"status": {
|
|
131
|
+
"file": "06_immich_status",
|
|
132
|
+
"successMessage": "Immich Setup Completed",
|
|
133
|
+
"telemetryAction": "immich"
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# InfluxDB - Database for sensor data
|
|
3
|
+
influxdb:
|
|
4
|
+
image: influxdb:latest
|
|
5
|
+
container_name: influxdb
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["dbs", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$INFLUXDB_PORT:8086"
|
|
14
|
+
volumes:
|
|
15
|
+
- $DOCKERDIR/appdata/influxdb2/config:/etc/influxdb2
|
|
16
|
+
- $DOCKERDIR/appdata/influxdb2/db:/var/lib/influxdb2
|
|
17
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "influxdb",
|
|
7
|
+
"pname": "InfluxDB",
|
|
8
|
+
"description": "InfluxDB is an open-source time series database designed to handle high write and query loads. It is ideal for storing metrics, events, and real-time analytics data.",
|
|
9
|
+
"descriptionShort": "Timeseries database",
|
|
10
|
+
"icon": "sh-influxdb",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["database", "timeseries", "monitoring"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["dbs", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 8086,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"traefik": {
|
|
32
|
+
"supported": true
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"dashboard": {
|
|
36
|
+
"enabled": true,
|
|
37
|
+
"location": "local",
|
|
38
|
+
"showStats": true,
|
|
39
|
+
"portVariable": "INFLUXDB_PORT"
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"env": {
|
|
43
|
+
"variables": [
|
|
44
|
+
{
|
|
45
|
+
"name": "INFLUXDB_PORT",
|
|
46
|
+
"description": "Web interface port",
|
|
47
|
+
"type": "port",
|
|
48
|
+
"default": 8086,
|
|
49
|
+
"prompt": true,
|
|
50
|
+
"required": true,
|
|
51
|
+
"validation": {
|
|
52
|
+
"type": "port",
|
|
53
|
+
"min": 1,
|
|
54
|
+
"max": 65535
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
"status": {
|
|
61
|
+
"file": "06_influxdb_status",
|
|
62
|
+
"successMessage": "InfluxDB Setup Completed",
|
|
63
|
+
"telemetryAction": "influxdb"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# IT-Tools - IT Tools Dashboard
|
|
3
|
+
it-tools:
|
|
4
|
+
image: corentinth/it-tools
|
|
5
|
+
container_name: it-tools
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$ITTOOLS_PORT:80"
|
|
14
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "it-tools",
|
|
7
|
+
"pname": "IT-Tools",
|
|
8
|
+
"description": "IT-Tools is a collection of handy online tools for developers and IT professionals, including encoders, converters, formatters, hash generators, and more.",
|
|
9
|
+
"descriptionShort": "Set of IT tools",
|
|
10
|
+
"icon": "sh-it-tools",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["tools", "developer", "utilities"]
|
|
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": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"traefik": {
|
|
32
|
+
"supported": true
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"dashboard": {
|
|
36
|
+
"enabled": true,
|
|
37
|
+
"location": "local",
|
|
38
|
+
"showStats": true,
|
|
39
|
+
"portVariable": "ITTOOLS_PORT"
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"env": {
|
|
43
|
+
"variables": [
|
|
44
|
+
{
|
|
45
|
+
"name": "ITTOOLS_PORT",
|
|
46
|
+
"description": "Web interface port",
|
|
47
|
+
"type": "port",
|
|
48
|
+
"default": 8081,
|
|
49
|
+
"prompt": true,
|
|
50
|
+
"required": true,
|
|
51
|
+
"validation": {
|
|
52
|
+
"type": "port",
|
|
53
|
+
"min": 1,
|
|
54
|
+
"max": 65535
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
"status": {
|
|
61
|
+
"file": "06_ittools_status",
|
|
62
|
+
"successMessage": "IT-Tools Setup Completed",
|
|
63
|
+
"telemetryAction": "ittools"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Jackett - Torrent proxy
|
|
3
|
+
jackett:
|
|
4
|
+
image: lscr.io/linuxserver/jackett:latest
|
|
5
|
+
container_name: jackett
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: "no"
|
|
9
|
+
profiles: ["media", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$JACKETT_PORT:9117"
|
|
14
|
+
volumes:
|
|
15
|
+
- $DOCKERDIR/appdata/jackett:/config
|
|
16
|
+
- $DOWNLOADSDIR:/data/downloads
|
|
17
|
+
environment:
|
|
18
|
+
TZ: $TZ
|
|
19
|
+
PUID: $PUID
|
|
20
|
+
PGID: $PGID
|
|
21
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "jackett",
|
|
7
|
+
"pname": "Jackett",
|
|
8
|
+
"description": "Jackett works as a proxy server: it translates queries from apps (Sonarr, Radarr, Lidarr, etc.) into tracker-site-specific http queries, parses the response, and then sends results back to the requesting software.",
|
|
9
|
+
"descriptionShort": "Indexer proxy manager",
|
|
10
|
+
"icon": "sh-jackett",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["media", "indexer", "torrent"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["media", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 9117,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites", "downloads_folder", "appfolder_permission"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"traefik": {
|
|
32
|
+
"supported": true
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"dashboard": {
|
|
36
|
+
"enabled": true,
|
|
37
|
+
"location": "local",
|
|
38
|
+
"showStats": true,
|
|
39
|
+
"portVariable": "JACKETT_PORT"
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"env": {
|
|
43
|
+
"variables": [
|
|
44
|
+
{
|
|
45
|
+
"name": "JACKETT_PORT",
|
|
46
|
+
"description": "Web interface port",
|
|
47
|
+
"type": "port",
|
|
48
|
+
"default": 9117,
|
|
49
|
+
"prompt": true,
|
|
50
|
+
"required": true,
|
|
51
|
+
"validation": {
|
|
52
|
+
"type": "port",
|
|
53
|
+
"min": 1,
|
|
54
|
+
"max": 65535
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
"status": {
|
|
61
|
+
"file": "06_jackett_status",
|
|
62
|
+
"successMessage": "Jackett Setup Completed",
|
|
63
|
+
"telemetryAction": "jackett"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Jellyfin - Media Server
|
|
3
|
+
jellyfin:
|
|
4
|
+
image: jellyfin/jellyfin:latest
|
|
5
|
+
container_name: jellyfin
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: "no"
|
|
9
|
+
profiles: ["media", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
user: $PUID:$PGID
|
|
13
|
+
# DEVICES-GPU-PLACEHOLDER-DO-NOT-DELETE
|
|
14
|
+
ports:
|
|
15
|
+
- "$JELLYFIN_PORT:8096"
|
|
16
|
+
# - "8920:8920" # Emby also uses same port if running both
|
|
17
|
+
environment:
|
|
18
|
+
UMASK_SET: 022
|
|
19
|
+
TZ: $TZ
|
|
20
|
+
volumes:
|
|
21
|
+
- $DOCKERDIR/appdata/jellyfin:/config
|
|
22
|
+
- $DOWNLOADSDIR:/data/downloads
|
|
23
|
+
# - $MEDIADIR1:/data/media1
|
|
24
|
+
# - $MEDIADIR2:/data/media2
|
|
25
|
+
# - $MEDIADIR3:/data/media3
|
|
26
|
+
- /dev/shm:/data/transcode # Offload transcoding to RAM if you have enough RAM
|
|
27
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
"app": {
|
|
5
|
+
"sname": "jellyfin",
|
|
6
|
+
"pname": "Jellyfin",
|
|
7
|
+
"description": "Jellyfin is an open-source media server. It enables you to collect, manage, and stream your media. It is a free alternative to Plex and Emby.",
|
|
8
|
+
"descriptionShort": "Open-source media server",
|
|
9
|
+
"icon": "sh-jellyfin",
|
|
10
|
+
"category": "official",
|
|
11
|
+
"menuNumber": "06",
|
|
12
|
+
"tags": [
|
|
13
|
+
"media",
|
|
14
|
+
"streaming",
|
|
15
|
+
"video",
|
|
16
|
+
"music"
|
|
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": 8096,
|
|
31
|
+
"protocol": "http"
|
|
32
|
+
},
|
|
33
|
+
"requirements": {
|
|
34
|
+
"prerequisites": [
|
|
35
|
+
"prerequisites",
|
|
36
|
+
"media_folder",
|
|
37
|
+
"downloads_folder",
|
|
38
|
+
"add_gpu",
|
|
39
|
+
"appfolder_permission"
|
|
40
|
+
],
|
|
41
|
+
"apps": []
|
|
42
|
+
},
|
|
43
|
+
"gpu": {
|
|
44
|
+
"required": false,
|
|
45
|
+
"usage": "Hardware transcoding",
|
|
46
|
+
"vendors": {
|
|
47
|
+
"intel": {
|
|
48
|
+
"pattern": "dri"
|
|
49
|
+
},
|
|
50
|
+
"amd": {
|
|
51
|
+
"pattern": "dri"
|
|
52
|
+
},
|
|
53
|
+
"nvidia": {
|
|
54
|
+
"pattern": "runtime"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"traefik": {
|
|
59
|
+
"supported": true
|
|
60
|
+
},
|
|
61
|
+
"dashboard": {
|
|
62
|
+
"enabled": true,
|
|
63
|
+
"location": "local",
|
|
64
|
+
"showStats": true,
|
|
65
|
+
"portVariable": "JELLYFIN_PORT"
|
|
66
|
+
},
|
|
67
|
+
"env": {
|
|
68
|
+
"variables": [
|
|
69
|
+
{
|
|
70
|
+
"name": "JELLYFIN_PORT",
|
|
71
|
+
"description": "Web interface port",
|
|
72
|
+
"type": "port",
|
|
73
|
+
"default": 8096,
|
|
74
|
+
"prompt": true,
|
|
75
|
+
"required": true,
|
|
76
|
+
"validation": {
|
|
77
|
+
"type": "port",
|
|
78
|
+
"min": 1,
|
|
79
|
+
"max": 65535
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
"status": {
|
|
85
|
+
"file": "06_jellyfin_status",
|
|
86
|
+
"successMessage": "Jellyfin Setup Completed",
|
|
87
|
+
"telemetryAction": "jellyfin"
|
|
88
|
+
}
|
|
89
|
+
}
|