@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,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "traefik-access-log",
|
|
7
|
+
"pname": "Traefik Access Log for Dozzle",
|
|
8
|
+
"description": "A lightweight container that streams Traefik access logs, making them viewable in Dozzle for easy monitoring and debugging.",
|
|
9
|
+
"descriptionShort": "Traefik access log for Dozzle",
|
|
10
|
+
"icon": "sh-traefik",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["traefik", "logs", "monitoring", "dozzle"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": [],
|
|
21
|
+
"webui": false,
|
|
22
|
+
"port": null,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites", "traefik_production"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"postInstall": {
|
|
32
|
+
"messages": [
|
|
33
|
+
{
|
|
34
|
+
"type": "note",
|
|
35
|
+
"text": "Traefik Access Logs should now be available on Dozzle."
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
"traefik": {
|
|
41
|
+
"supported": false
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
"dashboard": {
|
|
45
|
+
"enabled": false,
|
|
46
|
+
"location": "local",
|
|
47
|
+
"showStats": false
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
"env": {
|
|
51
|
+
"variables": []
|
|
52
|
+
},
|
|
53
|
+
|
|
54
|
+
"status": {
|
|
55
|
+
"file": "06_traefikaccesslog_status",
|
|
56
|
+
"successMessage": "Traefik Access Log Setup Completed",
|
|
57
|
+
"telemetryAction": "traefikaccesslog"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Traefik Certs Dumper - Extract LetsEncrypt Certificates - Traefik2 Compatible
|
|
3
|
+
traefik-certs-dumper:
|
|
4
|
+
container_name: traefik-certs-dumper
|
|
5
|
+
image: ghcr.io/kereis/traefik-certs-dumper:latest
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
network_mode: none
|
|
11
|
+
# command: --restart-containers container1,container2,container3
|
|
12
|
+
volumes:
|
|
13
|
+
- $DOCKERDIR/appdata/traefik3/acme:/traefik:ro
|
|
14
|
+
- $DOCKERDIR/appdata/traefik-certs/$DOMAINNAME_1:/output:rw
|
|
15
|
+
# - /var/run/docker.sock:/var/run/docker.sock:ro # Only needed if restarting containers (use Docker Socket Proxy instead)
|
|
16
|
+
environment:
|
|
17
|
+
DOMAIN: $DOMAINNAME_1
|
|
18
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "traefik-certs-dumper",
|
|
7
|
+
"pname": "Traefik Certs Dumper",
|
|
8
|
+
"description": "Traefik Certs Dumper extracts LetsEncrypt certificates from Traefik's ACME storage and saves them as separate cert.pem and key.pem files for use with other applications.",
|
|
9
|
+
"descriptionShort": "Download SSL Certs from Traefik",
|
|
10
|
+
"icon": "sh-traefik",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["traefik", "ssl", "certificates", "letsencrypt"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": [],
|
|
21
|
+
"webui": false,
|
|
22
|
+
"protocol": "http"
|
|
23
|
+
},
|
|
24
|
+
|
|
25
|
+
"requirements": {
|
|
26
|
+
"prerequisites": ["prerequisites"],
|
|
27
|
+
"apps": []
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
"postInstall": {
|
|
31
|
+
"messages": [
|
|
32
|
+
{
|
|
33
|
+
"type": "note",
|
|
34
|
+
"text": "SSL Certificate files (cert.pem and key.pem) can be found here: $DOCKER_FOLDER/appdata/traefik-certs"
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
"traefik": {
|
|
40
|
+
"supported": false
|
|
41
|
+
},
|
|
42
|
+
|
|
43
|
+
"dashboard": {
|
|
44
|
+
"enabled": false
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
"env": {
|
|
48
|
+
"variables": []
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
"status": {
|
|
52
|
+
"file": "06_traefikcertsdumper_status",
|
|
53
|
+
"successMessage": "Traefik Certs Dumper Setup Completed",
|
|
54
|
+
"telemetryAction": "traefik-certs-dumper"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Traefik Error Log (traefik.log) for Dozzle
|
|
3
|
+
traefik-error-log:
|
|
4
|
+
container_name: traefik-error-log
|
|
5
|
+
image: alpine
|
|
6
|
+
volumes:
|
|
7
|
+
- $DOCKERDIR/logs/$HOSTNAME/traefik/traefik.log:/var/log/stream.log
|
|
8
|
+
command:
|
|
9
|
+
- tail
|
|
10
|
+
- -f
|
|
11
|
+
- /var/log/stream.log
|
|
12
|
+
network_mode: none
|
|
13
|
+
restart: unless-stopped
|
|
14
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "traefik-error-log",
|
|
7
|
+
"pname": "Traefik Error Log for Dozzle",
|
|
8
|
+
"description": "A lightweight container that streams Traefik error logs (traefik.log), making them viewable in Dozzle for easy monitoring and debugging.",
|
|
9
|
+
"descriptionShort": "Traefik error log for Dozzle",
|
|
10
|
+
"icon": "sh-traefik",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["traefik", "logs", "monitoring", "dozzle"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": [],
|
|
21
|
+
"webui": false,
|
|
22
|
+
"port": null,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites", "traefik_production"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"postInstall": {
|
|
32
|
+
"messages": [
|
|
33
|
+
{
|
|
34
|
+
"type": "note",
|
|
35
|
+
"text": "Traefik Error Logs should now be available on Dozzle."
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
"traefik": {
|
|
41
|
+
"supported": false
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
"dashboard": {
|
|
45
|
+
"enabled": false,
|
|
46
|
+
"location": "local",
|
|
47
|
+
"showStats": false
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
"env": {
|
|
51
|
+
"variables": []
|
|
52
|
+
},
|
|
53
|
+
|
|
54
|
+
"status": {
|
|
55
|
+
"file": "06_traefikerrorlog_status",
|
|
56
|
+
"successMessage": "Traefik Error Log Setup Completed",
|
|
57
|
+
"telemetryAction": "traefikerrorlog"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Transmission - Torrent downloader
|
|
3
|
+
transmission:
|
|
4
|
+
image: lscr.io/linuxserver/transmission:latest
|
|
5
|
+
container_name: transmission
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "downloads", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$TRANSMISSION_PORT:9091"
|
|
14
|
+
- "51413:51413"
|
|
15
|
+
- "51413:51413/udp"
|
|
16
|
+
volumes:
|
|
17
|
+
- $DOCKERDIR/appdata/transmission:/config
|
|
18
|
+
- $DOWNLOADSDIR/torrents:/data/downloads
|
|
19
|
+
- $DOWNLOADSDIR:/data/watch
|
|
20
|
+
environment:
|
|
21
|
+
- PUID=$PUID
|
|
22
|
+
- PGID=$PGID
|
|
23
|
+
- TZ=$TZ
|
|
24
|
+
- FILE__USER=/run/secrets/transmission_user
|
|
25
|
+
- FILE__PASS=/run/secrets/transmission_pass
|
|
26
|
+
# - TRANSMISSION_WEB_HOME= #optional
|
|
27
|
+
# - WHITELIST= #optional
|
|
28
|
+
# - PEERPORT= #optional
|
|
29
|
+
# - HOST_WHITELIST= #optional
|
|
30
|
+
secrets:
|
|
31
|
+
- transmission_user
|
|
32
|
+
- transmission_pass
|
|
33
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "transmission",
|
|
7
|
+
"pname": "Transmission",
|
|
8
|
+
"description": "Transmission is a fast, easy, and free BitTorrent client. It comes in several flavors: a native GUI client for Mac, GTK+, and Qt, as well as a daemon for headless use and a web UI.",
|
|
9
|
+
"descriptionShort": "Bittorrent client",
|
|
10
|
+
"icon": "sh-transmission",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["downloads", "torrent", "bittorrent"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "downloads", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 9091,
|
|
23
|
+
"protocol": "http"
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"requirements": {
|
|
27
|
+
"prerequisites": ["prerequisites", "downloads_folder", "appfolder_permission"],
|
|
28
|
+
"apps": []
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"folders": {
|
|
32
|
+
"custom": [
|
|
33
|
+
{
|
|
34
|
+
"path": "$DOWNLOADSDIR/torrents",
|
|
35
|
+
"children": ["movies", "tv", "others", "indexes"],
|
|
36
|
+
"owner": "$USERNAME:$USERNAME",
|
|
37
|
+
"permissions": "755"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"traefik": {
|
|
43
|
+
"supported": true
|
|
44
|
+
},
|
|
45
|
+
|
|
46
|
+
"dashboard": {
|
|
47
|
+
"enabled": true,
|
|
48
|
+
"location": "local",
|
|
49
|
+
"showStats": true,
|
|
50
|
+
"portVariable": "TRANSMISSION_PORT"
|
|
51
|
+
},
|
|
52
|
+
|
|
53
|
+
"env": {
|
|
54
|
+
"variables": [
|
|
55
|
+
{
|
|
56
|
+
"name": "TRANSMISSION_PORT",
|
|
57
|
+
"description": "Web interface port",
|
|
58
|
+
"type": "port",
|
|
59
|
+
"default": 9091,
|
|
60
|
+
"prompt": true,
|
|
61
|
+
"required": true,
|
|
62
|
+
"validation": {
|
|
63
|
+
"type": "port",
|
|
64
|
+
"min": 1,
|
|
65
|
+
"max": 65535
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"secrets": [
|
|
70
|
+
{
|
|
71
|
+
"name": "transmission_user",
|
|
72
|
+
"description": "Transmission WebUI Username:",
|
|
73
|
+
"type": "prompt",
|
|
74
|
+
"addToCompose": true
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "transmission_pass",
|
|
78
|
+
"description": "Transmission WebUI Password:",
|
|
79
|
+
"type": "prompt_password",
|
|
80
|
+
"addToCompose": true
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
|
|
85
|
+
"status": {
|
|
86
|
+
"file": "06_transmission_status",
|
|
87
|
+
"successMessage": "Transmission Setup Completed",
|
|
88
|
+
"telemetryAction": "transmission"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Trilium - Personal Heirarchical Notes
|
|
3
|
+
trilium:
|
|
4
|
+
image: triliumnext/trilium:latest
|
|
5
|
+
container_name: trilium
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$TRILIUM_PORT:8080"
|
|
14
|
+
volumes:
|
|
15
|
+
- $DOCKERDIR/appdata/trilium:/home/node/trilium-data
|
|
16
|
+
environment:
|
|
17
|
+
- TRILIUM_DATA_DIR=/home/node/trilium-data
|
|
18
|
+
- TZ=$TZ
|
|
19
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "trilium",
|
|
7
|
+
"pname": "Trilium",
|
|
8
|
+
"description": "Trilium is a hierarchical note-taking application with focus on building large personal knowledge bases. It supports rich text notes, images, files, code snippets, and more.",
|
|
9
|
+
"descriptionShort": "Personal Hierarchical Notes",
|
|
10
|
+
"icon": "sh-trilium-notes",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["notes", "wiki", "knowledge-base"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["apps", "all"],
|
|
20
|
+
"networks": ["default"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 8082,
|
|
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": "TRILIUM_PORT"
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"env": {
|
|
43
|
+
"variables": [
|
|
44
|
+
{
|
|
45
|
+
"name": "TRILIUM_PORT",
|
|
46
|
+
"description": "Web interface port",
|
|
47
|
+
"type": "port",
|
|
48
|
+
"default": 8082,
|
|
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_trilium_status",
|
|
62
|
+
"successMessage": "Trilium Setup Completed",
|
|
63
|
+
"telemetryAction": "trilium"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Uptime Kuma - Status Page & Monitoring Server
|
|
3
|
+
uptime-kuma:
|
|
4
|
+
image: louislam/uptime-kuma
|
|
5
|
+
container_name: uptime-kuma
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["core", "monitoring", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
- socket_proxy
|
|
13
|
+
ports:
|
|
14
|
+
- "$UPTIMEKUMA_PORT:3001"
|
|
15
|
+
volumes:
|
|
16
|
+
- $DOCKERDIR/appdata/uptime-kuma:/app/data
|
|
17
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "uptime-kuma",
|
|
7
|
+
"pname": "Uptime-Kuma",
|
|
8
|
+
"description": "Uptime Kuma is a fancy, self-hosted monitoring tool. It supports monitoring uptime for HTTP(s), TCP, HTTP(s) Keyword, Ping, DNS, and more with a beautiful status page.",
|
|
9
|
+
"descriptionShort": "Self-hosted monitoring tool",
|
|
10
|
+
"icon": "sh-uptime-kuma",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["monitoring", "uptime", "status"]
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"deployment": {
|
|
17
|
+
"type": "single",
|
|
18
|
+
"compose": "compose.yml",
|
|
19
|
+
"profiles": ["core", "monitoring", "all"],
|
|
20
|
+
"networks": ["default", "socket_proxy"],
|
|
21
|
+
"webui": true,
|
|
22
|
+
"port": 3001,
|
|
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": "UPTIMEKUMA_PORT"
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
"env": {
|
|
43
|
+
"variables": [
|
|
44
|
+
{
|
|
45
|
+
"name": "UPTIMEKUMA_PORT",
|
|
46
|
+
"description": "Web interface port",
|
|
47
|
+
"type": "port",
|
|
48
|
+
"default": 3001,
|
|
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_uptimekuma_status",
|
|
62
|
+
"successMessage": "Uptime-Kuma Setup Completed",
|
|
63
|
+
"telemetryAction": "uptimekuma"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Vaultwarden Password Manager
|
|
3
|
+
vaultwarden:
|
|
4
|
+
image: vaultwarden/server:latest
|
|
5
|
+
container_name: vaultwarden
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$VAULTWARDEN_PORT:80"
|
|
14
|
+
environment:
|
|
15
|
+
# This is required to allow vaultwarden to verify the TLS certificate!
|
|
16
|
+
- DOMAIN=https://SUBDOMAIN-PLACEHOLDER.$DOMAINNAME_1
|
|
17
|
+
# - ADMIN_TOKEN=ADMIN-TOKEN-PLACEHOLDER
|
|
18
|
+
volumes:
|
|
19
|
+
- $DOCKERDIR/appdata/vaultwarden/data:/data
|
|
20
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Vaultwarden pre-install hook
|
|
3
|
+
# Enables Admin WebUI by hashing the admin token with argon2 and updating compose.yml
|
|
4
|
+
|
|
5
|
+
APP_COMPOSE_FILE="$DOCKER_FOLDER/compose/$HOSTNAME/vaultwarden.yml"
|
|
6
|
+
|
|
7
|
+
f_print_substep "Hashing Vaultwarden admin token with argon2..."
|
|
8
|
+
|
|
9
|
+
# Read the admin token secret
|
|
10
|
+
ADMIN_TOKEN_RAW=$(sudo cat "$DOCKER_FOLDER/secrets/vaultwarden_admin_token")
|
|
11
|
+
|
|
12
|
+
# Hash the token with argon2
|
|
13
|
+
VAULTWARDEN_ADMIN_TOKEN=$(echo -n "$ADMIN_TOKEN_RAW" | argon2 "$(openssl rand -base64 32)" -e -id -k 65540 -t 3 -p 4)
|
|
14
|
+
f_print_substep "Admin token created"
|
|
15
|
+
|
|
16
|
+
# Uncomment ADMIN_TOKEN line in compose
|
|
17
|
+
f_print_substep "Updating compose file: $APP_COMPOSE_FILE"
|
|
18
|
+
sed -i 's|# - ADMIN_TOKEN=|- ADMIN_TOKEN=|' "$APP_COMPOSE_FILE"
|
|
19
|
+
sleep 1
|
|
20
|
+
|
|
21
|
+
# Replace placeholder with hashed token
|
|
22
|
+
sed -i "s|ADMIN-TOKEN-PLACEHOLDER|$VAULTWARDEN_ADMIN_TOKEN|" "$APP_COMPOSE_FILE"
|
|
23
|
+
sleep 1
|
|
24
|
+
|
|
25
|
+
# Escape $ signs for Docker Compose (argon2 hash contains $ characters)
|
|
26
|
+
sed -i '/.*ADMIN_TOKEN.*/s/\$/\$\$/g' "$APP_COMPOSE_FILE"
|
|
27
|
+
f_print_substep "Admin token added to compose file"
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "vaultwarden",
|
|
7
|
+
"pname": "Vaultwarden",
|
|
8
|
+
"description": "Vaultwarden is an unofficial Bitwarden-compatible server written in Rust, providing a lightweight self-hosted password manager.",
|
|
9
|
+
"descriptionShort": "Open-source password manager",
|
|
10
|
+
"icon": "sh-vaultwarden",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "06",
|
|
13
|
+
"tags": ["security", "passwords", "web"]
|
|
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
|
+
"env": {
|
|
32
|
+
"variables": [
|
|
33
|
+
{
|
|
34
|
+
"name": "VAULTWARDEN_PORT",
|
|
35
|
+
"description": "Web interface port",
|
|
36
|
+
"type": "port",
|
|
37
|
+
"default": 8081,
|
|
38
|
+
"prompt": true,
|
|
39
|
+
"required": true,
|
|
40
|
+
"validation": {
|
|
41
|
+
"type": "port",
|
|
42
|
+
"min": 1,
|
|
43
|
+
"max": 65535
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"secrets": [
|
|
48
|
+
{
|
|
49
|
+
"name": "vaultwarden_admin_token",
|
|
50
|
+
"description": "Enter a password for Vaultwarden Admin (aka Admin Token):",
|
|
51
|
+
"type": "prompt_password",
|
|
52
|
+
"addToCompose": false
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
"hooks": {
|
|
58
|
+
"preInstall": "files/pre-install.sh"
|
|
59
|
+
},
|
|
60
|
+
|
|
61
|
+
"postInstall": {
|
|
62
|
+
"messages": [
|
|
63
|
+
{
|
|
64
|
+
"type": "info",
|
|
65
|
+
"text": "For more information and tips, check out: https://www.simplehomelab.com/vaultwarden-docker-compose-guide/"
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
"traefik": {
|
|
71
|
+
"supported": true
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
"dashboard": {
|
|
75
|
+
"enabled": true,
|
|
76
|
+
"location": "local",
|
|
77
|
+
"showStats": true,
|
|
78
|
+
"portVariable": "VAULTWARDEN_PORT"
|
|
79
|
+
},
|
|
80
|
+
|
|
81
|
+
"status": {
|
|
82
|
+
"file": "06_vaultwarden_status",
|
|
83
|
+
"successMessage": "Vaultwarden Setup Completed",
|
|
84
|
+
"telemetryAction": "vaultwarden"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Vikunja - Task Management
|
|
3
|
+
vikunja:
|
|
4
|
+
image: vikunja/vikunja
|
|
5
|
+
container_name: vikunja
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
depends_on:
|
|
13
|
+
vikunja-mariadb:
|
|
14
|
+
condition: service_healthy
|
|
15
|
+
user: $PUID
|
|
16
|
+
ports:
|
|
17
|
+
- "$VIKUNJA_PORT:3456"
|
|
18
|
+
volumes:
|
|
19
|
+
- $DOCKERDIR/appdata/vikunja:/app/vikunja/files
|
|
20
|
+
environment:
|
|
21
|
+
- TZ=$TZ
|
|
22
|
+
- VIKUNJA_SERVICE_PUBLICURL=https://$VIKUNJA_SUBDOMAIN.$DOMAINNAME_1
|
|
23
|
+
- VIKUNJA_DATABASE_HOST=vikunja-mariadb
|
|
24
|
+
- VIKUNJA_DATABASE_PORT=3306
|
|
25
|
+
- VIKUNJA_DATABASE_TYPE=mysql
|
|
26
|
+
- VIKUNJA_DATABASE_DATABASE=vikunja
|
|
27
|
+
- VIKUNJA_DATABASE_USER=vikunja_db_user
|
|
28
|
+
- VIKUNJA_DATABASE_PASSWORD=$VIKUNJA_MARIADB_PASSWORD
|
|
29
|
+
- VIKUNJA_SERVICE_JWTSECRET=$VIKUNJA_JWT_SECRET
|
|
30
|
+
# DOCKER-LABELS-PLACEHOLDER
|