@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,13 @@
|
|
|
1
|
+
name: crowdsecurity/whitelists
|
|
2
|
+
description: "Whitelist events from own/known IP addresses"
|
|
3
|
+
whitelist:
|
|
4
|
+
reason: "Trusted IPs"
|
|
5
|
+
ip:
|
|
6
|
+
- "WAN-IP-PLACEHOLDER" # WAN IP
|
|
7
|
+
- "127.0.0.1" # Local Host
|
|
8
|
+
cidr:
|
|
9
|
+
- "192.168.0.0/16" # Local IPs
|
|
10
|
+
- "10.0.0.0/8" # Local IPs
|
|
11
|
+
- "172.16.0.0/12" # Local/Docker IPs
|
|
12
|
+
- "fe80::/10" # Local IPs
|
|
13
|
+
- "fc00::/7" # Local IPs
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../manifest-schema.json",
|
|
3
|
+
"version": "1.1",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "crowdsec",
|
|
7
|
+
"pname": "CrowdSec",
|
|
8
|
+
"descriptionShort": "Collaborative IPS",
|
|
9
|
+
"icon": "sh-crowdsec",
|
|
10
|
+
"category": "core"
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"deployment": {
|
|
14
|
+
"type": "single",
|
|
15
|
+
"compose": "compose.yml",
|
|
16
|
+
"webui": false,
|
|
17
|
+
"port": 8080,
|
|
18
|
+
"protocol": "http"
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
"requirements": {
|
|
22
|
+
"prerequisites": ["prerequisites"],
|
|
23
|
+
"apps": []
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"files": [
|
|
27
|
+
{
|
|
28
|
+
"source": "files/acquis.yaml",
|
|
29
|
+
"destination": "$DOCKER_FOLDER/appdata/crowdsec/config/acquis.yaml",
|
|
30
|
+
"backup": false
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"source": "files/acquis-traefik.yaml",
|
|
34
|
+
"destination": "$DOCKER_FOLDER/appdata/crowdsec/config/acquis.d/acquis-traefik.yaml",
|
|
35
|
+
"backup": false,
|
|
36
|
+
"condition": "traefik_logs_exist"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"source": "files/custom-whitelists.yaml",
|
|
40
|
+
"destination": "$DOCKER_FOLDER/appdata/crowdsec/config/parsers/s02-enrich/custom-whitelists.yaml",
|
|
41
|
+
"backup": false
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
|
|
45
|
+
"placeholders": {
|
|
46
|
+
"config": {
|
|
47
|
+
"HOSTNAME-PLACEHOLDER": "$HOSTNAME",
|
|
48
|
+
"WAN-IP-PLACEHOLDER": "$PUBLIC_WAN_IP"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
"traefik": {
|
|
53
|
+
"supported": false
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
"dashboard": {
|
|
57
|
+
"enabled": true,
|
|
58
|
+
"location": "other",
|
|
59
|
+
"showStats": true,
|
|
60
|
+
"portVariable": null
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
"env": {
|
|
64
|
+
"variables": [
|
|
65
|
+
{
|
|
66
|
+
"name": "CROWDSEC_PORT",
|
|
67
|
+
"type": "port",
|
|
68
|
+
"default": "8080",
|
|
69
|
+
"prompt": true,
|
|
70
|
+
"required": true
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"secrets": [
|
|
74
|
+
{
|
|
75
|
+
"name": "crowdsec_console_enroll_context",
|
|
76
|
+
"type": "optional",
|
|
77
|
+
"description": "CrowdSec Console enrollment context key"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
|
|
82
|
+
"status": {
|
|
83
|
+
"file": "05_crowdsec_status",
|
|
84
|
+
"successMessage": "CrowdSec Setup Completed",
|
|
85
|
+
"telemetryAction": "crowdsec"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../manifest-schema.json",
|
|
3
|
+
"version": "1.1",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "crowdsec-firewall-bouncer",
|
|
7
|
+
"pname": "CrowdSec Firewall Bouncer",
|
|
8
|
+
"description": "CrowdSec Firewall Bouncer is a systemd service that interfaces with your system's firewall (iptables/nftables) to block malicious IPs identified by CrowdSec. It provides host-level protection by blocking traffic at the firewall layer.",
|
|
9
|
+
"descriptionShort": "Firewall Bouncer for CrowdSec (non-Docker)",
|
|
10
|
+
"icon": "sh-crowdsec",
|
|
11
|
+
"category": "core",
|
|
12
|
+
"menuNumber": "05",
|
|
13
|
+
"tags": ["security", "firewall", "crowdsec", "system-app"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "system",
|
|
18
|
+
"compose": null,
|
|
19
|
+
"profiles": [],
|
|
20
|
+
"networks": [],
|
|
21
|
+
"webui": false,
|
|
22
|
+
"port": null,
|
|
23
|
+
"protocol": null
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"system": {
|
|
27
|
+
"package": "crowdsec-firewall-bouncer",
|
|
28
|
+
"service": "crowdsec-firewall-bouncer",
|
|
29
|
+
"configFile": "/etc/crowdsec/bouncers/crowdsec-firewall-bouncer.yaml",
|
|
30
|
+
"installCommand": "apt install -y --no-install-recommends crowdsec-firewall-bouncer",
|
|
31
|
+
"removeCommand": "apt remove -y crowdsec-firewall-bouncer",
|
|
32
|
+
"enableCommand": "systemctl enable crowdsec-firewall-bouncer",
|
|
33
|
+
"disableCommand": "systemctl disable crowdsec-firewall-bouncer",
|
|
34
|
+
"startCommand": "systemctl start crowdsec-firewall-bouncer",
|
|
35
|
+
"stopCommand": "systemctl stop crowdsec-firewall-bouncer"
|
|
36
|
+
},
|
|
37
|
+
|
|
38
|
+
"requirements": {
|
|
39
|
+
"prerequisites": ["prerequisites", "crowdsec_running"],
|
|
40
|
+
"apps": ["crowdsec"],
|
|
41
|
+
"license": "pro"
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
"files": [
|
|
45
|
+
{
|
|
46
|
+
"source": "../crowdsec/files/crowdsec-firewall-bouncer.yaml",
|
|
47
|
+
"destination": "/etc/crowdsec/bouncers/crowdsec-firewall-bouncer.yaml",
|
|
48
|
+
"backup": false
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
|
|
52
|
+
"placeholders": {
|
|
53
|
+
"config": {
|
|
54
|
+
"CROWDSEC-PORT-PLACEHOLDER": "$CROWDSEC_PORT",
|
|
55
|
+
"CROWDSEC-API-KEY-PLACEHOLDER": "$CROWDSEC_FIREWALL_BOUNCER_API_KEY"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
|
|
59
|
+
"traefik": {
|
|
60
|
+
"supported": false
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
"dashboard": {
|
|
64
|
+
"enabled": true,
|
|
65
|
+
"location": "other",
|
|
66
|
+
"showStats": false,
|
|
67
|
+
"note": "No web UI - appears in Others column on dashboard"
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
"status": {
|
|
71
|
+
"file": "05_crowdsec-firewall-bouncer_status",
|
|
72
|
+
"successMessage": "Firewall Bouncer Setup Completed",
|
|
73
|
+
"telemetryAction": "firewall-bouncer"
|
|
74
|
+
},
|
|
75
|
+
|
|
76
|
+
"postInstall": {
|
|
77
|
+
"commands": [
|
|
78
|
+
"cscli bouncers add firewall-bouncer-$HOSTNAME"
|
|
79
|
+
],
|
|
80
|
+
"tips": [
|
|
81
|
+
"Monitor Firewall Bouncer logs with: sudo tail -f /var/log/crowdsec-firewall-bouncer.log",
|
|
82
|
+
"When an IP is blocked, you will see [CSFB_BLOCK] in the logs"
|
|
83
|
+
]
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Deployrr Waiting Messages - Jokes and Tips
|
|
2
|
+
# One message per line. Empty lines and lines starting with # are ignored.
|
|
3
|
+
# Feel free to contribute! Submit a PR with your additions.
|
|
4
|
+
|
|
5
|
+
# Knock-knock jokes
|
|
6
|
+
Knock Knock! Who's there? Compose. Compose who? Compose yourself, Deployrr is still working!
|
|
7
|
+
Knock Knock! Who's there? Container. Container who? Container your excitement, Deployrr is almost done!
|
|
8
|
+
Knock Knock! Who's there? Service. Service who? Service yourself a cup of coffee, Deployrr is still working!
|
|
9
|
+
Knock knock! Who's there? Ping. Ping who? Ping me back - I think my network's down!
|
|
10
|
+
Knock knock! Who's there? Backup. Backup who? Backup your data before you regret it!
|
|
11
|
+
Knock knock! Who's there? Sudo. Sudo who? Sudo open this door right now, or I'll escalate privileges!
|
|
12
|
+
Knock knock! Who's there? SSH. SSH who? SSH me when you get in - securely, of course!
|
|
13
|
+
|
|
14
|
+
# Dad jokes
|
|
15
|
+
Patience, young grasshopper. The digital cogs are turning in Deployrr
|
|
16
|
+
Just a moment, while the internet hamsters power up Deployrr
|
|
17
|
+
Hold your horses! The electrons are sprinting through Deployrr
|
|
18
|
+
Deployrr is thinking... or maybe it's just daydreaming
|
|
19
|
+
It's like watching paint dry, but with Deployrr pixels
|
|
20
|
+
Hang tight, Deployrr is still cooking
|
|
21
|
+
What do you call a lazy Homelab admin? A Deployee
|
|
22
|
+
What do you call a Homelab admin who's always calm and collected? A Deployrr user
|
|
23
|
+
Deployrr is having a moment, a very long moment
|
|
24
|
+
Deployrr is taking a scenic route to the finish line
|
|
25
|
+
The computer's pondering the universe, one Deployrr byte at a time
|
|
26
|
+
What's a sysadmin's favorite drink? Root beer
|
|
27
|
+
Deployrr is playing a game of cat and mouse with itself
|
|
28
|
+
Deployrr is taking a coffee break, but it's a very long coffee break
|
|
29
|
+
Deployrr is doing the digital equivalent of a crossword puzzle
|
|
30
|
+
I tried to meditate, but my mind kept wandering to my Homelab. I guess you could say I'm serverly stressed
|
|
31
|
+
Deployrr is taking a detour through the land of infinite loops
|
|
32
|
+
|
|
33
|
+
# Docker jokes
|
|
34
|
+
Why did the container break up with the VM? It wanted less overhead in the relationship
|
|
35
|
+
My Docker container and I have a lot in common - we both need isolation to function properly
|
|
36
|
+
Docker containers are like introverts - they work best in isolation
|
|
37
|
+
Why don't containers ever get invited to parties? They prefer to stay isolated
|
|
38
|
+
|
|
39
|
+
# Sysadmin humor
|
|
40
|
+
There are only 10 types of people: those who understand binary and those who don't
|
|
41
|
+
A SQL query walks into a bar, walks up to two tables and asks... may I join you?
|
|
42
|
+
I'm not lazy, I'm just in power-saving mode
|
|
43
|
+
My code doesn't have bugs, it has random features
|
|
44
|
+
Why do programmers prefer dark mode? Because light attracts bugs
|
|
45
|
+
|
|
46
|
+
# Homelab tips (useful info!)
|
|
47
|
+
[TIP] Remember to backup your Docker volumes regularly
|
|
48
|
+
[TIP] Consider using Dockwatch or WUD (What's Up Docker) for automatic container updates
|
|
49
|
+
[TIP] Always check container logs when troubleshooting issues
|
|
50
|
+
[TIP] Document your homelab setup - future you will thank you
|
|
51
|
+
[TIP] Join the Deployrr Discord community for help and ideas
|
|
52
|
+
|
|
53
|
+
# More waiting messages
|
|
54
|
+
Still working on it... Rome wasn't built in a day, and neither is a perfect homelab
|
|
55
|
+
Good things come to those who wait... especially valid SSL certificates
|
|
56
|
+
Certificates are like fine wine - they take time to mature
|
|
57
|
+
Meanwhile, somewhere in the cloud, electrons are dancing to make this happen
|
|
58
|
+
Trust the process - your homelab is about to level up
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Deployrr Dashboard - Homepage based Dashboard for Deployrr
|
|
3
|
+
deployrr-dashboard:
|
|
4
|
+
image: ghcr.io/gethomepage/homepage:${DEPLOYRRDASHBOARD_VERSION_PIN}
|
|
5
|
+
container_name: deployrr-dashboard
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["core", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
- socket_proxy
|
|
13
|
+
ports:
|
|
14
|
+
- "$DEPLOYRRDASHBOARD_PORT:3000"
|
|
15
|
+
volumes:
|
|
16
|
+
- $DOCKERDIR/appdata/deployrr-dashboard/config:/app/config
|
|
17
|
+
- $DOCKERDIR/appdata/deployrr-dashboard/images:/app/public/images
|
|
18
|
+
environment:
|
|
19
|
+
TZ: $TZ
|
|
20
|
+
PUID: $PUID
|
|
21
|
+
PGID: $PGID
|
|
22
|
+
HOMEPAGE_ALLOWED_HOSTS: "*"
|
|
23
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
---
|
|
2
|
+
# For configuration options and examples, please see:
|
|
3
|
+
# https://gethomepage.dev/configs/bookmarks/
|
|
4
|
+
|
|
5
|
+
- Links:
|
|
6
|
+
- Website:
|
|
7
|
+
- icon: mdi-web
|
|
8
|
+
href: https://www.simplehomelab.com/
|
|
9
|
+
description: "www.simplehomelab.com"
|
|
10
|
+
- Youtube Channel:
|
|
11
|
+
- icon: si-youtube
|
|
12
|
+
href: https://www.youtube.com/@Simple-Homelab
|
|
13
|
+
description: "@Simple-Homelab"
|
|
14
|
+
- Docker-Traefik Repo:
|
|
15
|
+
- icon: si-github
|
|
16
|
+
href: https://github.com/SimpleHomelab/Docker-Traefik
|
|
17
|
+
description: "https://github.com/SimpleHomelab/Docker-Traefik"
|
|
18
|
+
- Discord Server:
|
|
19
|
+
- icon: si-discord
|
|
20
|
+
href: https://discord.gg/wtmqgd4GpX
|
|
21
|
+
description: "https://www.simplehomelab.com/discord"
|
|
22
|
+
- Deployrr:
|
|
23
|
+
- Website:
|
|
24
|
+
- icon: mdi-application-brackets
|
|
25
|
+
href: https://www.deployrr.app/
|
|
26
|
+
descripton: "www.deployrr.app"
|
|
27
|
+
- Documentation:
|
|
28
|
+
- icon: mdi-text-box-multiple-outline
|
|
29
|
+
href: https://docs.deployrr.app/
|
|
30
|
+
descripton: "docs.deployrr.app"
|
|
31
|
+
- Your Account:
|
|
32
|
+
- icon: mdi-account-box
|
|
33
|
+
href: https://www.simplehomelab.com/login/?redirect_to=https%3A%2F%2Fwww.simplehomelab.com%2Fgeek-army%2F
|
|
34
|
+
description: "https://www.simplehomelab.com/login"
|
|
35
|
+
- Deployrr GitHub:
|
|
36
|
+
- icon: si-github
|
|
37
|
+
href: https://github.com/SimpleHomelab/Deployrr
|
|
38
|
+
description: "https://github.com/SimpleHomelab/Deployrr"
|
|
39
|
+
- Support My Work:
|
|
40
|
+
- Join the Geek Army:
|
|
41
|
+
- icon: mdi-wallet-membership
|
|
42
|
+
href: https://www.simplehomelab.com/geek-army/join/
|
|
43
|
+
description: "https://www.simplehomelab.com/geek-army/join"
|
|
44
|
+
- BuyMeACoffee:
|
|
45
|
+
- icon: si-buymeacoffee
|
|
46
|
+
href: https://www.buymeacoffee.com/SimpleHomelab
|
|
47
|
+
description: "https://www.buymeacoffee.com/SimpleHomelab"
|
|
48
|
+
- Ko-Fi:
|
|
49
|
+
- icon: si-kofi
|
|
50
|
+
href: https://ko-fi.com/SimpleHomelab
|
|
51
|
+
description: "https://ko-fi.com/SimpleHomelab"
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# SERVICE-NAME-START-PLACEHOLDER
|
|
2
|
+
- SERVICE-NAME-PLACEHOLDER:
|
|
3
|
+
href: SERVICE-URL-PLACEHOLDER
|
|
4
|
+
description: SERVICE-DESCRIPTION-PLACEHOLDER
|
|
5
|
+
icon: SERVICE-ICON-PLACEHOLDER
|
|
6
|
+
server: DOCKER-HOSTNAME-PLACEHOLDER
|
|
7
|
+
container: CONTAINER-NAME-PLACEHOLDER
|
|
8
|
+
showStats: false
|
|
9
|
+
# SERVICE-NAME-END-PLACEHOLDER
|
|
10
|
+
# OTHER-APPS-PLACEHOLDER
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# SERVICE-NAME-START-PLACEHOLDER
|
|
2
|
+
- SERVICE-NAME-PLACEHOLDER:
|
|
3
|
+
href: SERVICE-URL-PLACEHOLDER
|
|
4
|
+
description: SERVICE-DESCRIPTION-PLACEHOLDER
|
|
5
|
+
icon: SERVICE-ICON-PLACEHOLDER
|
|
6
|
+
server: DOCKER-HOSTNAME-PLACEHOLDER
|
|
7
|
+
container: CONTAINER-NAME-PLACEHOLDER
|
|
8
|
+
showStats: false
|
|
9
|
+
# SERVICE-NAME-END-PLACEHOLDER
|
|
10
|
+
# WEB-APPS-LOCAL-PLACEHOLDER
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# SERVICE-NAME-START-PLACEHOLDER
|
|
2
|
+
- SERVICE-NAME-PLACEHOLDER:
|
|
3
|
+
href: SERVICE-URL-PLACEHOLDER
|
|
4
|
+
description: SERVICE-DESCRIPTION-PLACEHOLDER
|
|
5
|
+
icon: SERVICE-ICON-PLACEHOLDER
|
|
6
|
+
server: DOCKER-HOSTNAME-PLACEHOLDER
|
|
7
|
+
container: CONTAINER-NAME-PLACEHOLDER
|
|
8
|
+
showStats: false
|
|
9
|
+
# SERVICE-NAME-END-PLACEHOLDER
|
|
10
|
+
# WEB-APPS-REMOTE-PLACEHOLDER
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
# For configuration options and examples, please see:
|
|
3
|
+
# https://gethomepage.dev/configs/services/
|
|
4
|
+
|
|
5
|
+
- Apps (Local):
|
|
6
|
+
- Links to Local Apps:
|
|
7
|
+
description: ""
|
|
8
|
+
# WEB-APPS-LOCAL-PLACEHOLDER
|
|
9
|
+
|
|
10
|
+
- Apps (Remote):
|
|
11
|
+
- Links to Remote Apps:
|
|
12
|
+
description: ""
|
|
13
|
+
# WEB-APPS-REMOTE-PLACEHOLDER
|
|
14
|
+
|
|
15
|
+
- Apps (Others):
|
|
16
|
+
- Core / Non-Web Apps:
|
|
17
|
+
description: ""
|
|
18
|
+
# OTHER-APPS-PLACEHOLDER
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
# For configuration options and examples, please see:
|
|
3
|
+
# https://gethomepage.dev/configs/settings/
|
|
4
|
+
|
|
5
|
+
title: Deployrr Dashboard
|
|
6
|
+
theme: dark
|
|
7
|
+
color: slate
|
|
8
|
+
headerStyle: boxed
|
|
9
|
+
hideErrors: true
|
|
10
|
+
favicon: /images/deployrr_icon.ico
|
|
11
|
+
providers:
|
|
12
|
+
openweathermap: openweathermapapikey
|
|
13
|
+
weatherapi: weatherapiapikey
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
# For configuration options and examples, please see:
|
|
3
|
+
# https://gethomepage.dev/widgets/
|
|
4
|
+
|
|
5
|
+
- logo:
|
|
6
|
+
icon: /images/deployrr_icon.png
|
|
7
|
+
|
|
8
|
+
- greeting:
|
|
9
|
+
text_size: xl
|
|
10
|
+
text: Deployrr Dashboard
|
|
11
|
+
|
|
12
|
+
- resources:
|
|
13
|
+
cpu: true
|
|
14
|
+
memory: true
|
|
15
|
+
disk: /
|
|
16
|
+
|
|
17
|
+
- search:
|
|
18
|
+
provider: duckduckgo
|
|
19
|
+
target: _blank
|
|
20
|
+
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../manifest-schema.json",
|
|
3
|
+
"version": "1.1",
|
|
4
|
+
"app": {
|
|
5
|
+
"sname": "deployrr-dashboard",
|
|
6
|
+
"pname": "Deployrr Dashboard",
|
|
7
|
+
"description": "Auto-populating Dashboard for Deployrr Apps",
|
|
8
|
+
"descriptionShort": "Auto-populating Dashboard",
|
|
9
|
+
"icon": "sh-deployrr",
|
|
10
|
+
"category": "core",
|
|
11
|
+
"menuNumber": "03"
|
|
12
|
+
},
|
|
13
|
+
"deployment": {
|
|
14
|
+
"type": "single",
|
|
15
|
+
"compose": "compose.yml",
|
|
16
|
+
"profiles": [
|
|
17
|
+
"apps",
|
|
18
|
+
"all"
|
|
19
|
+
],
|
|
20
|
+
"networks": [
|
|
21
|
+
"default",
|
|
22
|
+
"socket_proxy"
|
|
23
|
+
],
|
|
24
|
+
"webui": true,
|
|
25
|
+
"port": 3050,
|
|
26
|
+
"protocol": "http"
|
|
27
|
+
},
|
|
28
|
+
"requirements": {
|
|
29
|
+
"prerequisites": [
|
|
30
|
+
"prerequisites",
|
|
31
|
+
"folder_permission"
|
|
32
|
+
],
|
|
33
|
+
"apps": [
|
|
34
|
+
"socket-proxy"
|
|
35
|
+
],
|
|
36
|
+
"systemType": []
|
|
37
|
+
},
|
|
38
|
+
"folders": {
|
|
39
|
+
"permissions": {
|
|
40
|
+
"appdata": "$USERNAME:$USERNAME",
|
|
41
|
+
"fixAfterStart": true
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
{
|
|
46
|
+
"source": "files/bookmarks.yaml",
|
|
47
|
+
"dest": "appdata/{sname}/config/bookmarks.yaml",
|
|
48
|
+
"placeholders": {}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"source": "files/docker.yaml",
|
|
52
|
+
"dest": "appdata/{sname}/config/docker.yaml",
|
|
53
|
+
"placeholders": {
|
|
54
|
+
"DOCKER-HOSTNAME-PLACEHOLDER": "{hostname}-Docker"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"source": "files/services.yaml",
|
|
59
|
+
"dest": "appdata/{sname}/config/services.yaml",
|
|
60
|
+
"placeholders": {}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"source": "files/settings.yaml",
|
|
64
|
+
"dest": "appdata/{sname}/config/settings.yaml",
|
|
65
|
+
"placeholders": {}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"source": "files/widgets.yaml",
|
|
69
|
+
"dest": "appdata/{sname}/config/widgets.yaml",
|
|
70
|
+
"placeholders": {}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"source": "files/deployrr_icon.ico",
|
|
74
|
+
"dest": "appdata/{sname}/images/deployrr_icon.ico",
|
|
75
|
+
"placeholders": {}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"source": "files/deployrr_icon.png",
|
|
79
|
+
"dest": "appdata/{sname}/images/deployrr_icon.png",
|
|
80
|
+
"placeholders": {}
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"traefik": {
|
|
84
|
+
"supported": true,
|
|
85
|
+
"subdomain": "deployrr"
|
|
86
|
+
},
|
|
87
|
+
"dashboard": {
|
|
88
|
+
"enabled": true,
|
|
89
|
+
"location": "local",
|
|
90
|
+
"showStats": true,
|
|
91
|
+
"portVariable": "DEPLOYRRDASHBOARD_PORT"
|
|
92
|
+
},
|
|
93
|
+
"hooks": {
|
|
94
|
+
"preInstall": null,
|
|
95
|
+
"postInstall": null,
|
|
96
|
+
"preUninstall": null,
|
|
97
|
+
"postUninstall": null
|
|
98
|
+
},
|
|
99
|
+
"env": {
|
|
100
|
+
"variables": [
|
|
101
|
+
{
|
|
102
|
+
"name": "DEPLOYRRDASHBOARD_PORT",
|
|
103
|
+
"description": "Web interface port",
|
|
104
|
+
"type": "port",
|
|
105
|
+
"default": 3050,
|
|
106
|
+
"prompt": true,
|
|
107
|
+
"required": true,
|
|
108
|
+
"validation": {
|
|
109
|
+
"type": "port",
|
|
110
|
+
"min": 1024,
|
|
111
|
+
"max": 65535
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "DEPLOYRRDASHBOARD_VERSION_PIN",
|
|
116
|
+
"description": "Docker image version",
|
|
117
|
+
"type": "string",
|
|
118
|
+
"default": "latest",
|
|
119
|
+
"prompt": false,
|
|
120
|
+
"required": false
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"secrets": []
|
|
124
|
+
},
|
|
125
|
+
"firewall": {
|
|
126
|
+
"rules": []
|
|
127
|
+
},
|
|
128
|
+
"status": {
|
|
129
|
+
"file": "03_deployrr-dashboard_status",
|
|
130
|
+
"successMessage": "Deployrr Dashboard Setup Completed",
|
|
131
|
+
"telemetryAction": "deployrr-dashboard"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Nginx Proxy Manager - Reverse Proxy with SSL Management
|
|
3
|
+
npm:
|
|
4
|
+
image: jc21/nginx-proxy-manager:latest
|
|
5
|
+
container_name: npm
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "80:80"
|
|
14
|
+
- "443:443"
|
|
15
|
+
- "$NPM_ADMIN_PORT:81"
|
|
16
|
+
volumes:
|
|
17
|
+
- $DOCKERDIR/appdata/npm/data:/data
|
|
18
|
+
- $DOCKERDIR/appdata/npm/letsencrypt:/etc/letsencrypt
|
|
19
|
+
# Custom Nginx Configuration (optional)
|
|
20
|
+
# - $DOCKERDIR/appdata/npm/custom:/data/nginx/custom
|
|
21
|
+
# Log Rotation Configuration (optional)
|
|
22
|
+
# - $DOCKERDIR/appdata/npm/logrotate:/etc/logrotate.d/nginx-proxy-manager
|
|
23
|
+
environment:
|
|
24
|
+
TZ: $TZ
|
|
25
|
+
PUID: $PUID
|
|
26
|
+
PGID: $PGID
|
|
27
|
+
# SQLite Database (default - no additional config needed)
|
|
28
|
+
# DB_SQLITE_FILE: "/data/database.sqlite"
|
|
29
|
+
# Network & Security
|
|
30
|
+
DISABLE_IPV6: "true"
|
|
31
|
+
X_FRAME_OPTIONS: "deny"
|
|
32
|
+
# CloudFront/Cloudflare IP Range Fetching (optional)
|
|
33
|
+
# IP_RANGES_FETCH_ENABLED: "true"
|
|
34
|
+
healthcheck:
|
|
35
|
+
test: ["CMD", "/usr/bin/check-health"]
|
|
36
|
+
interval: 30s
|
|
37
|
+
timeout: 10s
|
|
38
|
+
retries: 3
|
|
39
|
+
start_period: 60s
|
|
40
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../manifest-schema.json",
|
|
3
|
+
"version": "1.1",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "npm",
|
|
7
|
+
"pname": "Nginx Proxy Manager",
|
|
8
|
+
"descriptionShort": "Reverse Proxy with SSL",
|
|
9
|
+
"icon": "sh-nginx-proxy-manager",
|
|
10
|
+
"category": "core"
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"deployment": {
|
|
14
|
+
"type": "single",
|
|
15
|
+
"compose": "compose.yml",
|
|
16
|
+
"webui": true,
|
|
17
|
+
"port": 81,
|
|
18
|
+
"protocol": "http"
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
"requirements": {
|
|
22
|
+
"prerequisites": ["prerequisites", "hybrid_mode"],
|
|
23
|
+
"apps": []
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"traefik": {
|
|
27
|
+
"supported": false
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
"dashboard": {
|
|
31
|
+
"enabled": true,
|
|
32
|
+
"location": "other",
|
|
33
|
+
"showStats": true,
|
|
34
|
+
"portVariable": "NPM_ADMIN_PORT"
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
"env": {
|
|
38
|
+
"variables": [
|
|
39
|
+
{
|
|
40
|
+
"name": "NPM_ADMIN_PORT",
|
|
41
|
+
"description": "Admin web interface port",
|
|
42
|
+
"type": "port",
|
|
43
|
+
"default": 81,
|
|
44
|
+
"prompt": true,
|
|
45
|
+
"required": true,
|
|
46
|
+
"validation": {
|
|
47
|
+
"type": "port",
|
|
48
|
+
"min": 1,
|
|
49
|
+
"max": 65535
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
|
|
55
|
+
"status": {
|
|
56
|
+
"file": "03_npm_status",
|
|
57
|
+
"successMessage": "Nginx Proxy Manager Setup Completed",
|
|
58
|
+
"telemetryAction": "npm"
|
|
59
|
+
}
|
|
60
|
+
}
|