@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,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "glances",
|
|
7
|
+
"pname": "Glances",
|
|
8
|
+
"description": "Glances is a cross-platform system monitoring tool that provides a comprehensive overview of your system's performance including CPU, memory, disk, network, and Docker container metrics.",
|
|
9
|
+
"descriptionShort": "System and Docker metrics monitoring",
|
|
10
|
+
"icon": "sh-glances",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["monitoring", "system", "metrics", "docker"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["monitoring", "all"],
|
|
20
|
+
"networks": ["default", "socket_proxy"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 61208,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites"],
|
|
28
|
+
"apps": ["socket-proxy"]
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"files": [
|
|
32
|
+
{
|
|
33
|
+
"source": "files/glances.conf",
|
|
34
|
+
"dest": "$DOCKER_FOLDER/appdata/glances/glances.conf"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
|
|
38
|
+
"traefik": {
|
|
39
|
+
"supported": true
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"dashboard": {
|
|
43
|
+
"enabled": true,
|
|
44
|
+
"location": "local",
|
|
45
|
+
"showStats": true,
|
|
46
|
+
"portVariable": "GLANCES_PORT"
|
|
47
|
+
},
|
|
48
|
+
|
|
49
|
+
"env": {
|
|
50
|
+
"variables": [
|
|
51
|
+
{
|
|
52
|
+
"name": "GLANCES_PORT",
|
|
53
|
+
"description": "Web interface port",
|
|
54
|
+
"type": "port",
|
|
55
|
+
"default": 61208,
|
|
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_glances_status",
|
|
69
|
+
"successMessage": "Glances Setup Completed",
|
|
70
|
+
"telemetryAction": "glances"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Gluetun - VPN Client for Docker Containers and More
|
|
3
|
+
# Gluetun only for use by torrent clients + on demand lan devices.
|
|
4
|
+
# Arr apps do not need VPN (not recommended), unless you have ISP/country restrictions.
|
|
5
|
+
gluetun:
|
|
6
|
+
image: qmcgaw/gluetun
|
|
7
|
+
container_name: gluetun
|
|
8
|
+
security_opt:
|
|
9
|
+
- no-new-privileges:true
|
|
10
|
+
restart: unless-stopped
|
|
11
|
+
profiles: ["core", "all"]
|
|
12
|
+
networks:
|
|
13
|
+
- default
|
|
14
|
+
cap_add:
|
|
15
|
+
- NET_ADMIN
|
|
16
|
+
devices:
|
|
17
|
+
- /dev/net/tun
|
|
18
|
+
# ports:
|
|
19
|
+
# - $QBITTORRENTVPN_PORT:8080 # qBittorrent available at http://DOCKER-HOST-IP:$QBITTORRENTVPN_PORT
|
|
20
|
+
# - 8888:8888/tcp # HTTP proxy
|
|
21
|
+
# - 8388:8388/tcp # Shadowsocks
|
|
22
|
+
# - 8388:8388/udp # Shadowsocks
|
|
23
|
+
volumes:
|
|
24
|
+
- $DOCKERDIR/appdata/gluetun:/gluetun
|
|
25
|
+
environment:
|
|
26
|
+
TZ: $TZ
|
|
27
|
+
VPN_SERVICE_PROVIDER: $GLUETUN_VPN_SERVICE_PROVIDER
|
|
28
|
+
VPN_TYPE: $GLUETUN_VPN_TYPE
|
|
29
|
+
# WIREGUARD_PRIVATE_KEY: $GLUETUN_WIREGUARD_PRIVATE_KEY
|
|
30
|
+
# WIREGUARD_ADDRESSES: $GLUETUN_WIREGUARD_ADDRESSES
|
|
31
|
+
# OPENVPN_USER: $GLUETUN_OPENVPN_USERNAME
|
|
32
|
+
# OPENVPN_PASSWORD: $GLUETUN_OPENVPN_PASSWORD
|
|
33
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Gluetun post-install hook
|
|
3
|
+
# Handles conditional VPN type configuration and connection verification
|
|
4
|
+
|
|
5
|
+
APP_SNAME="gluetun"
|
|
6
|
+
APP_PNAME="Gluetun"
|
|
7
|
+
APP_COMPOSE_FILE="$DOCKER_FOLDER/compose/$HOSTNAME/$APP_SNAME.yml"
|
|
8
|
+
|
|
9
|
+
# Get VPN type from environment
|
|
10
|
+
VPN_TYPE="$GLUETUN_VPN_TYPE"
|
|
11
|
+
|
|
12
|
+
f_print_step "1/4" "Configuring $APP_PNAME for $VPN_TYPE..."
|
|
13
|
+
echo
|
|
14
|
+
|
|
15
|
+
if [[ "$VPN_TYPE" == "wireguard" ]]; then
|
|
16
|
+
f_print_substep "Collecting WireGuard credentials"
|
|
17
|
+
|
|
18
|
+
# Prompt for WireGuard-specific variables
|
|
19
|
+
f_update_envars "GLUETUN_WIREGUARD_PRIVATE_KEY" "$GLUETUN_WIREGUARD_PRIVATE_KEY" "Enter the \\Z2Private Key\\Zn from the configuration provided by the Provider:"
|
|
20
|
+
f_update_envars "GLUETUN_WIREGUARD_ADDRESSES" "$GLUETUN_WIREGUARD_ADDRESSES" "Enter the \\Z2Wireguard Addresses\\Zn from the configuration provided by the Provider (usually of the format XX.XX.XX.XX/XX):"
|
|
21
|
+
|
|
22
|
+
# Uncomment WireGuard lines in compose file
|
|
23
|
+
f_print_step "2/4" "Updating compose file for WireGuard..."
|
|
24
|
+
f_sed_replace "# WIREGUARD_PRIVATE_KEY:" "WIREGUARD_PRIVATE_KEY:" "$APP_COMPOSE_FILE"
|
|
25
|
+
f_sed_replace "# WIREGUARD_ADDRESSES:" "WIREGUARD_ADDRESSES:" "$APP_COMPOSE_FILE"
|
|
26
|
+
echo
|
|
27
|
+
|
|
28
|
+
elif [[ "$VPN_TYPE" == "openvpn" ]]; then
|
|
29
|
+
f_print_substep "Collecting OpenVPN credentials"
|
|
30
|
+
|
|
31
|
+
# Prompt for OpenVPN-specific variables
|
|
32
|
+
f_update_envars "GLUETUN_OPENVPN_USERNAME" "$GLUETUN_OPENVPN_USERNAME" "Enter the \\Z2OpenVPN Username\\Zn from the Provider:"
|
|
33
|
+
f_update_envars "GLUETUN_OPENVPN_PASSWORD" "$GLUETUN_OPENVPN_PASSWORD" "Enter the \\Z2OpenVPN Password\\Zn from the Provider:"
|
|
34
|
+
|
|
35
|
+
# Uncomment OpenVPN lines in compose file
|
|
36
|
+
f_print_step "2/4" "Updating compose file for OpenVPN..."
|
|
37
|
+
f_sed_replace "# OPENVPN_USER:" "OPENVPN_USER:" "$APP_COMPOSE_FILE"
|
|
38
|
+
f_sed_replace "# OPENVPN_PASSWORD:" "OPENVPN_PASSWORD:" "$APP_COMPOSE_FILE"
|
|
39
|
+
echo
|
|
40
|
+
|
|
41
|
+
else
|
|
42
|
+
f_print_warning "Unknown VPN type: $VPN_TYPE. Please verify your configuration."
|
|
43
|
+
fi
|
|
44
|
+
|
|
45
|
+
f_print_step "3/4" "Recreating $APP_PNAME container with VPN configuration..."
|
|
46
|
+
f_docker_compose_recreate "$APP_SNAME" "06"
|
|
47
|
+
echo
|
|
48
|
+
|
|
49
|
+
f_print_step "4/4" "Waiting for $APP_PNAME to connect to VPN..."
|
|
50
|
+
TIMEOUT=0
|
|
51
|
+
TIMEOUT_LIMIT=60
|
|
52
|
+
GLUETUN_CONNECTED="false"
|
|
53
|
+
|
|
54
|
+
while [[ "$GLUETUN_CONNECTED" != "true" ]]; do
|
|
55
|
+
if [[ $TIMEOUT -ge $TIMEOUT_LIMIT ]]; then
|
|
56
|
+
f_print_error "Timed out after ${TIMEOUT_LIMIT}s. Could not verify VPN connection."
|
|
57
|
+
f_print_warning "Check container logs with: sudo docker logs gluetun"
|
|
58
|
+
break
|
|
59
|
+
fi
|
|
60
|
+
|
|
61
|
+
# Check if container is running
|
|
62
|
+
CONTAINER_RUNNING="$(sudo docker container inspect -f '{{.State.Running}}' gluetun 2>/dev/null)"
|
|
63
|
+
if [[ "$CONTAINER_RUNNING" == "true" ]]; then
|
|
64
|
+
# Check logs for successful VPN connection
|
|
65
|
+
if sudo docker logs gluetun 2>&1 | grep -q "Public IP address is"; then
|
|
66
|
+
GLUETUN_CONNECTED="true"
|
|
67
|
+
PUBLIC_IP=$(sudo docker logs gluetun 2>&1 | grep "Public IP address is" | tail -1 | sed 's/.*Public IP address is //')
|
|
68
|
+
f_print_success "VPN connected successfully!"
|
|
69
|
+
f_print_substep "Public IP: $PUBLIC_IP"
|
|
70
|
+
fi
|
|
71
|
+
fi
|
|
72
|
+
|
|
73
|
+
((TIMEOUT++))
|
|
74
|
+
sleep 1
|
|
75
|
+
done
|
|
76
|
+
|
|
77
|
+
echo
|
|
78
|
+
f_print_success "$APP_PNAME configuration complete"
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "gluetun",
|
|
7
|
+
"pname": "Gluetun",
|
|
8
|
+
"description": "Gluetun is a lightweight, portable VPN client for Docker that supports multiple VPN providers. It acts as a VPN killswitch and can route traffic from other containers through the VPN tunnel.",
|
|
9
|
+
"descriptionShort": "Docker VPN Client",
|
|
10
|
+
"icon": "sh-gluetun",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["vpn", "networking", "security", "privacy"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["core", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": false,
|
|
22
|
+
"port": 0,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites", "network_adapter"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"traefik": {
|
|
32
|
+
"supported": false
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"dashboard": {
|
|
36
|
+
"enabled": false,
|
|
37
|
+
"location": "local",
|
|
38
|
+
"showStats": false,
|
|
39
|
+
"portVariable": null
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"env": {
|
|
43
|
+
"variables": [
|
|
44
|
+
{
|
|
45
|
+
"name": "GLUETUN_VPN_SERVICE_PROVIDER",
|
|
46
|
+
"description": "VPN Provider (case-sensitive, e.g. surfshark, nordvpn, mullvad)",
|
|
47
|
+
"type": "string",
|
|
48
|
+
"prompt": true,
|
|
49
|
+
"required": true
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "GLUETUN_VPN_TYPE",
|
|
53
|
+
"description": "VPN Type (openvpn or wireguard)",
|
|
54
|
+
"type": "string",
|
|
55
|
+
"default": "wireguard",
|
|
56
|
+
"prompt": true,
|
|
57
|
+
"required": true
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
"hooks": {
|
|
63
|
+
"postInstall": {
|
|
64
|
+
"script": "files/post-install.sh",
|
|
65
|
+
"messages": [
|
|
66
|
+
{
|
|
67
|
+
"style": "note",
|
|
68
|
+
"text": "Gluetun allows advanced configurations (e.g. selecting VPN countries). Reference: https://www.simplehomelab.com/gluetun-docker-guide/"
|
|
69
|
+
}
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
"postInstall": {
|
|
75
|
+
"messages": [
|
|
76
|
+
{
|
|
77
|
+
"type": "info",
|
|
78
|
+
"text": "To route other containers through Gluetun, add 'network_mode: service:gluetun' to their compose configuration."
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
|
|
83
|
+
"status": {
|
|
84
|
+
"file": "06_gluetun_status",
|
|
85
|
+
"successMessage": "Gluetun Setup Completed",
|
|
86
|
+
"telemetryAction": "gluetun"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Gonic - Music Server
|
|
3
|
+
gonic:
|
|
4
|
+
container_name: gonic
|
|
5
|
+
image: sentriz/gonic:latest
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: "no"
|
|
9
|
+
profiles: ["media", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$GONIC_PORT:80"
|
|
14
|
+
volumes:
|
|
15
|
+
- $DOCKERDIR/appdata/gonic/data:/data
|
|
16
|
+
- $DOCKERDIR/appdata/gonic/podcasts:/podcasts
|
|
17
|
+
- $DOCKERDIR/appdata/gonic/cache:/cache
|
|
18
|
+
- $DOCKERDIR/appdata/gonic/playlists:/playlists
|
|
19
|
+
# - $MEDIADIR1:/data/media1
|
|
20
|
+
# - $MEDIADIR2:/data/media2
|
|
21
|
+
# - $MEDIADIR3:/data/media3
|
|
22
|
+
environment:
|
|
23
|
+
- PUID=$PUID
|
|
24
|
+
- PGID=$PGID
|
|
25
|
+
- TZ=$TZ
|
|
26
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "gonic",
|
|
7
|
+
"pname": "Gonic",
|
|
8
|
+
"description": "Gonic is a free music server implementing the Subsonic API. It supports on-the-fly transcoding and audio scrobbling.",
|
|
9
|
+
"descriptionShort": "Music server",
|
|
10
|
+
"icon": "sh-gonic",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["music", "media", "streaming", "subsonic"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["media", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 82,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites", "media_folder", "appfolder_permission"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"postInstall": {
|
|
32
|
+
"messages": [
|
|
33
|
+
{
|
|
34
|
+
"type": "note",
|
|
35
|
+
"text": "$APP_PNAME default username/password are: admin/admin"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
"traefik": {
|
|
41
|
+
"supported": true
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
"dashboard": {
|
|
45
|
+
"enabled": true,
|
|
46
|
+
"location": "local",
|
|
47
|
+
"showStats": true,
|
|
48
|
+
"portVariable": "GONIC_PORT"
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
"env": {
|
|
52
|
+
"variables": [
|
|
53
|
+
{
|
|
54
|
+
"name": "GONIC_PORT",
|
|
55
|
+
"description": "Web interface port",
|
|
56
|
+
"type": "port",
|
|
57
|
+
"default": 82,
|
|
58
|
+
"prompt": true,
|
|
59
|
+
"required": true,
|
|
60
|
+
"validation": {
|
|
61
|
+
"type": "port",
|
|
62
|
+
"min": 1,
|
|
63
|
+
"max": 65535
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
"folders": {
|
|
70
|
+
"appdata": ["data", "podcasts", "cache", "playlists"]
|
|
71
|
+
},
|
|
72
|
+
|
|
73
|
+
"status": {
|
|
74
|
+
"file": "06_gonic_status",
|
|
75
|
+
"successMessage": "Gonic Setup Completed",
|
|
76
|
+
"telemetryAction": "gonic"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# GPTWOL - Wake On LAN Docker GUI
|
|
3
|
+
gptwol:
|
|
4
|
+
container_name: gptwol
|
|
5
|
+
image: misterbabou/gptwol:latest
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
network_mode: host
|
|
11
|
+
stdin_open: true
|
|
12
|
+
tty: true
|
|
13
|
+
environment:
|
|
14
|
+
- PUID=$PUID
|
|
15
|
+
- PGID=$PGID
|
|
16
|
+
- TZ=$TZ
|
|
17
|
+
- PORT=$GPTWOL_PORT # default port is 5000
|
|
18
|
+
- REFRESH_PING=60 # in seconds
|
|
19
|
+
# - PING_TIMEOUT=200 # in milliseconds
|
|
20
|
+
volumes:
|
|
21
|
+
- $DOCKERDIR/appdata/gptwol/db:/app/db
|
|
22
|
+
- $DOCKERDIR/appdata/gptwol/cron:/etc/cron.d
|
|
23
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "gptwol",
|
|
7
|
+
"pname": "GPTWOL",
|
|
8
|
+
"description": "GPTWOL is a Wake On LAN Docker GUI that allows you to wake up devices on your network from a web interface.",
|
|
9
|
+
"descriptionShort": "Wake On LAN Docker GUI",
|
|
10
|
+
"icon": "sh-gptwol",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["wake-on-lan", "network", "utilities"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": [],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 5000,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"folders": {
|
|
32
|
+
"appdata": ["db", "cron"],
|
|
33
|
+
"permissions": {
|
|
34
|
+
"appdata": "$PUID:$PGID"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
|
|
38
|
+
"postInstall": {
|
|
39
|
+
"messages": [
|
|
40
|
+
{
|
|
41
|
+
"type": "warning",
|
|
42
|
+
"text": "Don't expose GPTWOL without a strong authentication."
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
"traefik": {
|
|
48
|
+
"supported": false
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
"dashboard": {
|
|
52
|
+
"enabled": true,
|
|
53
|
+
"location": "local",
|
|
54
|
+
"showStats": true,
|
|
55
|
+
"portVariable": "GPTWOL_PORT"
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
"env": {
|
|
59
|
+
"variables": [
|
|
60
|
+
{
|
|
61
|
+
"name": "GPTWOL_PORT",
|
|
62
|
+
"description": "Web interface port",
|
|
63
|
+
"type": "port",
|
|
64
|
+
"default": 5000,
|
|
65
|
+
"prompt": true,
|
|
66
|
+
"required": true,
|
|
67
|
+
"validation": {
|
|
68
|
+
"type": "port",
|
|
69
|
+
"min": 1,
|
|
70
|
+
"max": 65535
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
|
|
76
|
+
"status": {
|
|
77
|
+
"file": "06_gptwol_status",
|
|
78
|
+
"successMessage": "GPTWOL Setup Completed",
|
|
79
|
+
"telemetryAction": "gptwol"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Grafana - Graphical data visualization for InfluxDB data
|
|
3
|
+
grafana:
|
|
4
|
+
image: grafana/grafana:latest
|
|
5
|
+
container_name: grafana
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$GRAFANA_PORT:3000"
|
|
14
|
+
user: $PUID
|
|
15
|
+
volumes:
|
|
16
|
+
- $DOCKERDIR/appdata/grafana:/var/lib/grafana
|
|
17
|
+
environment:
|
|
18
|
+
GF_INSTALL_PLUGINS: "grafana-clock-panel,grafana-simple-json-datasource,grafana-worldmap-panel,grafana-piechart-panel,cloudflare-app"
|
|
19
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "grafana",
|
|
7
|
+
"pname": "Grafana",
|
|
8
|
+
"description": "Grafana is the open source analytics and monitoring solution for every database. Create, explore, and share dashboards with your team.",
|
|
9
|
+
"descriptionShort": "Dashboarding and visualization",
|
|
10
|
+
"icon": "sh-grafana",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["monitoring", "visualization", "dashboards", "analytics"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 3001,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"folders": {
|
|
32
|
+
"appdata": [],
|
|
33
|
+
"permissions": {
|
|
34
|
+
"appdata": "$PUID:$PGID"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
|
|
38
|
+
"postInstall": {
|
|
39
|
+
"messages": [
|
|
40
|
+
{
|
|
41
|
+
"type": "note",
|
|
42
|
+
"text": "Grafana default username/password are: admin/admin."
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
"traefik": {
|
|
48
|
+
"supported": true
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
"dashboard": {
|
|
52
|
+
"enabled": true,
|
|
53
|
+
"location": "local",
|
|
54
|
+
"showStats": true,
|
|
55
|
+
"portVariable": "GRAFANA_PORT"
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
"env": {
|
|
59
|
+
"variables": [
|
|
60
|
+
{
|
|
61
|
+
"name": "GRAFANA_PORT",
|
|
62
|
+
"description": "Web interface port",
|
|
63
|
+
"type": "port",
|
|
64
|
+
"default": 3001,
|
|
65
|
+
"prompt": true,
|
|
66
|
+
"required": true,
|
|
67
|
+
"validation": {
|
|
68
|
+
"type": "port",
|
|
69
|
+
"min": 1,
|
|
70
|
+
"max": 65535
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
|
|
76
|
+
"status": {
|
|
77
|
+
"file": "06_grafana_status",
|
|
78
|
+
"successMessage": "Grafana Setup Completed",
|
|
79
|
+
"telemetryAction": "grafana"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Grocy - ERP System for the Kitchen
|
|
3
|
+
grocy:
|
|
4
|
+
image: lscr.io/linuxserver/grocy:latest
|
|
5
|
+
container_name: grocy
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$GROCY_PORT:80"
|
|
14
|
+
volumes:
|
|
15
|
+
- $DOCKERDIR/appdata/grocy:/config
|
|
16
|
+
environment:
|
|
17
|
+
PUID: $PUID
|
|
18
|
+
PGID: $PGID
|
|
19
|
+
TZ: $TZ
|
|
20
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "grocy",
|
|
7
|
+
"pname": "Grocy",
|
|
8
|
+
"description": "Grocy is a self-hosted ERP system for your kitchen and household. It helps you track groceries, manage recipes, meal planning, shopping lists, and household chores.",
|
|
9
|
+
"descriptionShort": "ERP System for the Kitchen",
|
|
10
|
+
"icon": "sh-grocy",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["home", "groceries", "recipes", "household"]
|
|
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
|
+
"postInstall": {
|
|
32
|
+
"messages": [
|
|
33
|
+
{
|
|
34
|
+
"type": "note",
|
|
35
|
+
"text": "$APP_PNAME default username/password are: admin/admin"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
"traefik": {
|
|
41
|
+
"supported": true
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
"dashboard": {
|
|
45
|
+
"enabled": true,
|
|
46
|
+
"location": "local",
|
|
47
|
+
"showStats": true,
|
|
48
|
+
"portVariable": "GROCY_PORT"
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
"env": {
|
|
52
|
+
"variables": [
|
|
53
|
+
{
|
|
54
|
+
"name": "GROCY_PORT",
|
|
55
|
+
"description": "Web interface port",
|
|
56
|
+
"type": "port",
|
|
57
|
+
"default": 8081,
|
|
58
|
+
"prompt": true,
|
|
59
|
+
"required": true,
|
|
60
|
+
"validation": {
|
|
61
|
+
"type": "port",
|
|
62
|
+
"min": 1,
|
|
63
|
+
"max": 65535
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
"status": {
|
|
70
|
+
"file": "06_grocy_status",
|
|
71
|
+
"successMessage": "Grocy Setup Completed",
|
|
72
|
+
"telemetryAction": "grocy"
|
|
73
|
+
}
|
|
74
|
+
}
|