@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,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "flaresolverr",
|
|
7
|
+
"pname": "Flaresolverr",
|
|
8
|
+
"description": "Flaresolverr is a proxy server that helps bypass Cloudflare and DDoS-GUARD protection. It is commonly used with apps like Prowlarr and Jackett to access sites protected by Cloudflare's challenge pages.",
|
|
9
|
+
"descriptionShort": "Proxy to bypass Cloudflare protection",
|
|
10
|
+
"icon": "sh-flaresolverr",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["proxy", "cloudflare", "automation", "arr"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": false,
|
|
22
|
+
"port": 8191,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"hooks": {
|
|
32
|
+
"preInstall": {
|
|
33
|
+
"dialog": {
|
|
34
|
+
"type": "info",
|
|
35
|
+
"title": "Flaresolverr Issue",
|
|
36
|
+
"message": "\\n\\Z1NOTE!\\Zn\\n\\nFlaresolverr may currently not work due to Cloudflare actively working to block it.\\n\\nRead More: \\Z4https://github.com/FlareSolverr/FlareSolverr/issues/1253\\Zn."
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
"traefik": {
|
|
42
|
+
"supported": true
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
"dashboard": {
|
|
46
|
+
"enabled": true,
|
|
47
|
+
"location": "other",
|
|
48
|
+
"showStats": true,
|
|
49
|
+
"portVariable": "FLARESOLVERR_PORT"
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
"env": {
|
|
53
|
+
"variables": [
|
|
54
|
+
{
|
|
55
|
+
"name": "FLARESOLVERR_PORT",
|
|
56
|
+
"description": "API port",
|
|
57
|
+
"type": "port",
|
|
58
|
+
"default": 8191,
|
|
59
|
+
"prompt": true,
|
|
60
|
+
"required": true,
|
|
61
|
+
"validation": {
|
|
62
|
+
"type": "port",
|
|
63
|
+
"min": 1,
|
|
64
|
+
"max": 65535
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
"status": {
|
|
71
|
+
"file": "06_flaresolverr_status",
|
|
72
|
+
"successMessage": "Flaresolverr Setup Completed",
|
|
73
|
+
"telemetryAction": "flaresolverr"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Flowise - Drag & Drop LLM Flow Builder
|
|
3
|
+
flowise:
|
|
4
|
+
image: flowiseai/flowise:${FLOWISE_VERSION_PIN}
|
|
5
|
+
container_name: flowise
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
depends_on:
|
|
13
|
+
flowise-postgresql:
|
|
14
|
+
condition: service_healthy
|
|
15
|
+
flowise-redis:
|
|
16
|
+
condition: service_healthy
|
|
17
|
+
ports:
|
|
18
|
+
- ${FLOWISE_PORT}:${FLOWISE_PORT}
|
|
19
|
+
entrypoint: /bin/sh -c "sleep 3; flowise start"
|
|
20
|
+
healthcheck:
|
|
21
|
+
test: ["CMD", "curl", "-f", "http://localhost:${FLOWISE_PORT}/health"]
|
|
22
|
+
interval: 30s
|
|
23
|
+
timeout: 10s
|
|
24
|
+
retries: 3
|
|
25
|
+
volumes:
|
|
26
|
+
- $DOCKERDIR/appdata/flowise:/root/.flowise
|
|
27
|
+
environment:
|
|
28
|
+
- PORT=${FLOWISE_PORT}
|
|
29
|
+
- FLOWISE_USERNAME=${FLOWISE_USERNAME}
|
|
30
|
+
- FLOWISE_PASSWORD=${FLOWISE_PASSWORD}
|
|
31
|
+
- LOG_LEVEL=info
|
|
32
|
+
- DATABASE_TYPE=postgres
|
|
33
|
+
- DATABASE_HOST=flowise-postgresql
|
|
34
|
+
- DATABASE_PORT=5432
|
|
35
|
+
- DATABASE_NAME=flowise
|
|
36
|
+
- DATABASE_USER=flowise_db_user
|
|
37
|
+
- DATABASE_PASSWORD=${FLOWISE_POSTGRESQL_PASSWORD}
|
|
38
|
+
- REDIS_HOST=flowise-redis
|
|
39
|
+
- REDIS_PORT=6379
|
|
40
|
+
- APIKEY_PATH=/root/.flowise
|
|
41
|
+
- SECRETKEY_PATH=/root/.flowise
|
|
42
|
+
- LOG_PATH=/root/.flowise/logs
|
|
43
|
+
- STORAGE_TYPE=local
|
|
44
|
+
- BLOB_STORAGE_PATH=/root/.flowise/storage
|
|
45
|
+
- DEBUG=false
|
|
46
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Flowise PostgreSQL - Dedicated Database for Flowise
|
|
3
|
+
flowise-postgresql:
|
|
4
|
+
container_name: flowise-postgresql
|
|
5
|
+
image: postgres:${FLOWISEPOSTGRESQL_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
healthcheck:
|
|
11
|
+
test: ["CMD-SHELL", "pg_isready -d flowise -U flowise_db_user"]
|
|
12
|
+
start_period: 20s
|
|
13
|
+
interval: 30s
|
|
14
|
+
retries: 5
|
|
15
|
+
timeout: 5s
|
|
16
|
+
networks:
|
|
17
|
+
- default
|
|
18
|
+
volumes:
|
|
19
|
+
- $DOCKERDIR/appdata/flowise-postgresql:/var/lib/postgresql
|
|
20
|
+
environment:
|
|
21
|
+
- POSTGRES_DB=flowise
|
|
22
|
+
- POSTGRES_USER=flowise_db_user
|
|
23
|
+
- POSTGRES_PASSWORD=${FLOWISE_POSTGRESQL_PASSWORD}
|
|
24
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Flowise Redis - Dedicated Cache for Flowise
|
|
3
|
+
flowise-redis:
|
|
4
|
+
container_name: flowise-redis
|
|
5
|
+
image: redis:${FLOWISEREDIS_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,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "flowise",
|
|
7
|
+
"pname": "Flowise",
|
|
8
|
+
"description": "Flowise is a drag-and-drop UI for building customized LLM flows. It allows you to create AI agents, chatbots, and automation workflows using a visual interface with support for various LLM providers.",
|
|
9
|
+
"descriptionShort": "Drag & drop LLM flow builder",
|
|
10
|
+
"icon": "sh-flowise",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["ai", "llm", "automation", "chatbot", "low-code"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "multicontainer",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 5023,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"dependencies": [
|
|
27
|
+
{
|
|
28
|
+
"sname": "flowise-postgresql",
|
|
29
|
+
"pname": "Flowise PostgreSQL",
|
|
30
|
+
"compose": "flowise-postgresql.yml",
|
|
31
|
+
"installOrder": 1,
|
|
32
|
+
"waitForHealthy": true,
|
|
33
|
+
"required": true,
|
|
34
|
+
"description": "Dedicated PostgreSQL database for Flowise"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"sname": "flowise-redis",
|
|
38
|
+
"pname": "Flowise Redis",
|
|
39
|
+
"compose": "flowise-redis.yml",
|
|
40
|
+
"installOrder": 2,
|
|
41
|
+
"waitForHealthy": true,
|
|
42
|
+
"required": true,
|
|
43
|
+
"description": "Dedicated Redis cache for Flowise"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
|
|
47
|
+
"requirements": {
|
|
48
|
+
"prerequisites": ["prerequisites"],
|
|
49
|
+
"apps": []
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
"database": {
|
|
53
|
+
"type": "postgresql",
|
|
54
|
+
"containerSname": "flowise-postgresql",
|
|
55
|
+
"name": "flowise",
|
|
56
|
+
"user": "flowise_db_user",
|
|
57
|
+
"passwordVariable": "FLOWISE_POSTGRESQL_PASSWORD",
|
|
58
|
+
"host": "flowise-postgresql",
|
|
59
|
+
"port": 5432
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
"traefik": {
|
|
63
|
+
"supported": true
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
"dashboard": {
|
|
67
|
+
"enabled": true,
|
|
68
|
+
"location": "local",
|
|
69
|
+
"showStats": true,
|
|
70
|
+
"portVariable": "FLOWISE_PORT"
|
|
71
|
+
},
|
|
72
|
+
|
|
73
|
+
"env": {
|
|
74
|
+
"variables": [
|
|
75
|
+
{
|
|
76
|
+
"name": "FLOWISE_PORT",
|
|
77
|
+
"description": "Web interface port",
|
|
78
|
+
"type": "port",
|
|
79
|
+
"default": 5023,
|
|
80
|
+
"prompt": true,
|
|
81
|
+
"required": true,
|
|
82
|
+
"validation": { "type": "port", "min": 1, "max": 65535 }
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "FLOWISE_USERNAME",
|
|
86
|
+
"description": "Flowise admin username",
|
|
87
|
+
"type": "string",
|
|
88
|
+
"default": "admin",
|
|
89
|
+
"prompt": true,
|
|
90
|
+
"required": true
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "FLOWISE_PASSWORD",
|
|
94
|
+
"description": "Flowise admin password",
|
|
95
|
+
"type": "password",
|
|
96
|
+
"prompt": true,
|
|
97
|
+
"required": true
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "FLOWISE_POSTGRESQL_PASSWORD",
|
|
101
|
+
"description": "PostgreSQL database password (auto-generated)",
|
|
102
|
+
"type": "password",
|
|
103
|
+
"generate": "random",
|
|
104
|
+
"length": 32,
|
|
105
|
+
"prompt": false,
|
|
106
|
+
"required": true
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
|
|
111
|
+
"postInstall": {
|
|
112
|
+
"messages": [
|
|
113
|
+
{
|
|
114
|
+
"type": "note",
|
|
115
|
+
"text": "Flowise uses dedicated PostgreSQL (\\Z5flowise-postgresql\\Zn) and Redis (\\Z5flowise-redis\\Zn) containers. Database password is stored in \\Z4$DOCKER_FOLDER/.env\\Zn."
|
|
116
|
+
}
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
|
|
120
|
+
"status": {
|
|
121
|
+
"file": "06_flowise_status",
|
|
122
|
+
"successMessage": "Flowise Setup Completed",
|
|
123
|
+
"telemetryAction": "flowise"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# FreshRSS - RSS News Reader
|
|
3
|
+
freshrss:
|
|
4
|
+
image: lscr.io/linuxserver/freshrss:latest
|
|
5
|
+
container_name: freshrss
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$FRESHRSS_PORT:80"
|
|
14
|
+
volumes:
|
|
15
|
+
- $DOCKERDIR/appdata/freshrss:/config
|
|
16
|
+
environment:
|
|
17
|
+
PUID: $PUID
|
|
18
|
+
PGID: $PGID
|
|
19
|
+
TZ: $TZ
|
|
20
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "freshrss",
|
|
7
|
+
"pname": "FreshRSS",
|
|
8
|
+
"description": "FreshRSS is a self-hosted RSS feed aggregator. It supports multiple users, OPML import/export, a REST API, and various themes and extensions.",
|
|
9
|
+
"descriptionShort": "RSS feed aggregator",
|
|
10
|
+
"icon": "sh-freshrss",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["rss", "news", "aggregator"]
|
|
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": "FRESHRSS_PORT"
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"env": {
|
|
43
|
+
"variables": [
|
|
44
|
+
{
|
|
45
|
+
"name": "FRESHRSS_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_freshrss_status",
|
|
62
|
+
"successMessage": "FreshRSS Setup Completed",
|
|
63
|
+
"telemetryAction": "freshrss"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# FunkWhale - Music Server
|
|
3
|
+
funkwhale:
|
|
4
|
+
container_name: funkwhale
|
|
5
|
+
image: thetarkus/funkwhale
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: "no"
|
|
9
|
+
profiles: ["media", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- $FUNKWHALE_PORT:80
|
|
14
|
+
volumes:
|
|
15
|
+
- $DOCKERDIR/appdata/funkwhale:/data
|
|
16
|
+
# - $MEDIADIR1:/data/media1
|
|
17
|
+
# - $MEDIADIR2:/data/media2
|
|
18
|
+
# - $MEDIADIR3:/data/media3
|
|
19
|
+
environment:
|
|
20
|
+
- PUID=$PUID
|
|
21
|
+
- PGID=$PGID
|
|
22
|
+
# - FUNKWHALE_HOSTNAME=$FUNKWHALE_SUBDOMAIN.$DOMAINNAME1
|
|
23
|
+
# - NESTED_PROXY=1
|
|
24
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "funkwhale",
|
|
7
|
+
"pname": "Funkwhale",
|
|
8
|
+
"description": "Funkwhale is a community-driven project that lets you listen and share music and audio within a decentralized, open network.",
|
|
9
|
+
"descriptionShort": "Music server",
|
|
10
|
+
"icon": "sh-funkwhale",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["media", "music", "streaming"]
|
|
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
|
+
"hooks": {
|
|
32
|
+
"postInstall": "files/post-install.sh"
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"traefik": {
|
|
36
|
+
"supported": true
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
"dashboard": {
|
|
40
|
+
"enabled": true,
|
|
41
|
+
"location": "local",
|
|
42
|
+
"showStats": true,
|
|
43
|
+
"portVariable": "FUNKWHALE_PORT"
|
|
44
|
+
},
|
|
45
|
+
|
|
46
|
+
"env": {
|
|
47
|
+
"variables": [
|
|
48
|
+
{
|
|
49
|
+
"name": "FUNKWHALE_PORT",
|
|
50
|
+
"description": "Web interface port",
|
|
51
|
+
"type": "port",
|
|
52
|
+
"default": 82,
|
|
53
|
+
"prompt": true,
|
|
54
|
+
"required": true,
|
|
55
|
+
"validation": {
|
|
56
|
+
"type": "port",
|
|
57
|
+
"min": 1,
|
|
58
|
+
"max": 65535
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
"status": {
|
|
65
|
+
"file": "06_funkwhale_status",
|
|
66
|
+
"successMessage": "Funkwhale Setup Completed",
|
|
67
|
+
"telemetryAction": "funkwhale"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# GameVault - Self-hosted Game Library Manager
|
|
3
|
+
gamevault:
|
|
4
|
+
image: phalcode/gamevault-backend:${GAMEVAULT_VERSION_PIN}
|
|
5
|
+
container_name: gamevault
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
depends_on:
|
|
13
|
+
gamevault-postgresql:
|
|
14
|
+
condition: service_healthy
|
|
15
|
+
ports:
|
|
16
|
+
- $GAMEVAULT_PORT:8080/tcp
|
|
17
|
+
volumes:
|
|
18
|
+
- $GAMESDIR:/files
|
|
19
|
+
- $DOCKERDIR/appdata/gamevault:/media
|
|
20
|
+
environment:
|
|
21
|
+
- DB_HOST=gamevault-postgresql
|
|
22
|
+
- DB_PORT=5432
|
|
23
|
+
- DB_DATABASE=gamevault
|
|
24
|
+
- DB_USERNAME=gamevault_db_user
|
|
25
|
+
- DB_PASSWORD=$GAMEVAULT_POSTGRESQL_PASSWORD
|
|
26
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# GameVault PostgreSQL - Dedicated Database for GameVault
|
|
3
|
+
gamevault-postgresql:
|
|
4
|
+
container_name: gamevault-postgresql
|
|
5
|
+
image: postgres:${GAMEVAULTPOSTGRESQL_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
healthcheck:
|
|
11
|
+
test: ["CMD-SHELL", "pg_isready -d gamevault -U gamevault_db_user"]
|
|
12
|
+
start_period: 20s
|
|
13
|
+
interval: 30s
|
|
14
|
+
retries: 5
|
|
15
|
+
timeout: 5s
|
|
16
|
+
networks:
|
|
17
|
+
- default
|
|
18
|
+
volumes:
|
|
19
|
+
- $DOCKERDIR/appdata/gamevault-postgresql:/var/lib/postgresql
|
|
20
|
+
environment:
|
|
21
|
+
- POSTGRES_DB=gamevault
|
|
22
|
+
- POSTGRES_USER=gamevault_db_user
|
|
23
|
+
- POSTGRES_PASSWORD=$GAMEVAULT_POSTGRESQL_PASSWORD
|
|
24
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "gamevault",
|
|
7
|
+
"pname": "GameVault",
|
|
8
|
+
"description": "GameVault is a self-hosted gaming platform for drm-free games. It allows you to organize, download, and play your games from a central server with user management and progress tracking.",
|
|
9
|
+
"descriptionShort": "Self-hosted game library manager",
|
|
10
|
+
"icon": "sh-gamevault",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["games", "library", "media", "self-hosted"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "multicontainer",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 8080,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"dependencies": [
|
|
27
|
+
{
|
|
28
|
+
"sname": "gamevault-postgresql",
|
|
29
|
+
"pname": "GameVault PostgreSQL",
|
|
30
|
+
"compose": "gamevault-postgresql.yml",
|
|
31
|
+
"installOrder": 1,
|
|
32
|
+
"waitForHealthy": true,
|
|
33
|
+
"required": true,
|
|
34
|
+
"description": "Dedicated PostgreSQL database for GameVault"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
|
|
38
|
+
"requirements": {
|
|
39
|
+
"prerequisites": ["prerequisites", "games_folder"],
|
|
40
|
+
"apps": []
|
|
41
|
+
},
|
|
42
|
+
|
|
43
|
+
"database": {
|
|
44
|
+
"type": "postgresql",
|
|
45
|
+
"containerSname": "gamevault-postgresql",
|
|
46
|
+
"name": "gamevault",
|
|
47
|
+
"user": "gamevault_db_user",
|
|
48
|
+
"passwordVariable": "GAMEVAULT_POSTGRESQL_PASSWORD",
|
|
49
|
+
"host": "gamevault-postgresql",
|
|
50
|
+
"port": 5432
|
|
51
|
+
},
|
|
52
|
+
|
|
53
|
+
"traefik": {
|
|
54
|
+
"supported": true
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
"dashboard": {
|
|
58
|
+
"enabled": true,
|
|
59
|
+
"location": "local",
|
|
60
|
+
"showStats": true,
|
|
61
|
+
"portVariable": "GAMEVAULT_PORT"
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
"env": {
|
|
65
|
+
"variables": [
|
|
66
|
+
{
|
|
67
|
+
"name": "GAMEVAULT_PORT",
|
|
68
|
+
"description": "Web interface port",
|
|
69
|
+
"type": "port",
|
|
70
|
+
"default": 8080,
|
|
71
|
+
"prompt": true,
|
|
72
|
+
"required": true,
|
|
73
|
+
"validation": { "type": "port", "min": 1, "max": 65535 }
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "GAMEVAULT_POSTGRESQL_PASSWORD",
|
|
77
|
+
"description": "PostgreSQL database password (auto-generated)",
|
|
78
|
+
"type": "password",
|
|
79
|
+
"generate": "random",
|
|
80
|
+
"length": 32,
|
|
81
|
+
"prompt": false,
|
|
82
|
+
"required": true
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
|
|
87
|
+
"postInstall": {
|
|
88
|
+
"messages": [
|
|
89
|
+
{
|
|
90
|
+
"type": "note",
|
|
91
|
+
"text": "GameVault uses a dedicated PostgreSQL database (\\Z5gamevault-postgresql\\Zn). Database password is stored in \\Z4$DOCKER_FOLDER/.env\\Zn."
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
|
|
96
|
+
"status": {
|
|
97
|
+
"file": "06_gamevault_status",
|
|
98
|
+
"successMessage": "GameVault Setup Completed",
|
|
99
|
+
"telemetryAction": "gamevault"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Glances - System Information
|
|
3
|
+
glances:
|
|
4
|
+
image: nicolargo/glances:latest-full
|
|
5
|
+
container_name: glances
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["monitoring", "all"]
|
|
10
|
+
# privileged: true # Only for VM
|
|
11
|
+
networks:
|
|
12
|
+
- default
|
|
13
|
+
- socket_proxy
|
|
14
|
+
ports:
|
|
15
|
+
- "$GLANCES_PORT:61208"
|
|
16
|
+
pid: host
|
|
17
|
+
volumes:
|
|
18
|
+
- $DOCKERDIR/appdata/glances/glances.conf:/glances/conf/glances.conf # Use this if you want to add a glances.conf file
|
|
19
|
+
- $DOCKERDIR:/data/docker:ro
|
|
20
|
+
# - /var/run/docker.sock:/var/run/docker.sock:ro # Use Docker Socket Proxy instead for improved security
|
|
21
|
+
environment:
|
|
22
|
+
# - GLANCES_OPT="-C /glances/conf/glances.conf --quiet --export influxdb"
|
|
23
|
+
# - GLANCES_OPT="--export influxdb"
|
|
24
|
+
- "GLANCES_OPT=-w"
|
|
25
|
+
- DOCKER_HOST
|
|
26
|
+
# DOCKER-LABELS-PLACEHOLDER
|