@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,327 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../apps/manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
"app": {
|
|
5
|
+
"sname": "supabase",
|
|
6
|
+
"pname": "Supabase",
|
|
7
|
+
"description": "Supabase is an open-source Firebase alternative providing a full Postgres database, Auth, instant APIs, Edge Functions, Realtime subscriptions, Storage, and Vector embeddings. This installation includes 13 dedicated containers: Studio, Kong API gateway, GoTrue Auth, PostgREST, Realtime, Storage, ImgProxy, Postgres-Meta, Edge Functions, Logflare Analytics, PostgreSQL, Vector log collector, and Supavisor connection pooler.",
|
|
8
|
+
"descriptionShort": "Open-source Firebase alternative",
|
|
9
|
+
"icon": "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/supabase.svg",
|
|
10
|
+
"_iconFuture": "sh-supabase",
|
|
11
|
+
"category": "official",
|
|
12
|
+
"menuNumber": "07",
|
|
13
|
+
"tags": [
|
|
14
|
+
"database",
|
|
15
|
+
"api",
|
|
16
|
+
"auth",
|
|
17
|
+
"storage",
|
|
18
|
+
"realtime",
|
|
19
|
+
"serverless",
|
|
20
|
+
"postgres"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"deployment": {
|
|
24
|
+
"type": "multicontainer",
|
|
25
|
+
"compose": "compose.yml",
|
|
26
|
+
"profiles": [
|
|
27
|
+
"apps",
|
|
28
|
+
"all"
|
|
29
|
+
],
|
|
30
|
+
"networks": [
|
|
31
|
+
"default"
|
|
32
|
+
],
|
|
33
|
+
"webui": true,
|
|
34
|
+
"port": 8000,
|
|
35
|
+
"protocol": "http"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": [
|
|
38
|
+
{
|
|
39
|
+
"sname": "supabase-db",
|
|
40
|
+
"pname": "Supabase PostgreSQL",
|
|
41
|
+
"compose": "supabase-db.yml",
|
|
42
|
+
"installOrder": 1,
|
|
43
|
+
"waitForHealthy": true,
|
|
44
|
+
"required": true,
|
|
45
|
+
"description": "Dedicated PostgreSQL database for Supabase"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"sname": "supabase-vector",
|
|
49
|
+
"pname": "Supabase Vector",
|
|
50
|
+
"compose": "supabase-vector.yml",
|
|
51
|
+
"installOrder": 2,
|
|
52
|
+
"waitForHealthy": true,
|
|
53
|
+
"required": true,
|
|
54
|
+
"description": "Log collector sidecar (Vector -> Logflare)"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"sname": "supabase-analytics",
|
|
58
|
+
"pname": "Supabase Analytics",
|
|
59
|
+
"compose": "supabase-analytics.yml",
|
|
60
|
+
"installOrder": 3,
|
|
61
|
+
"waitForHealthy": true,
|
|
62
|
+
"required": true,
|
|
63
|
+
"description": "Log analytics engine (Logflare)"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"sname": "supabase-rest",
|
|
67
|
+
"pname": "Supabase REST",
|
|
68
|
+
"compose": "supabase-rest.yml",
|
|
69
|
+
"installOrder": 4,
|
|
70
|
+
"waitForHealthy": false,
|
|
71
|
+
"required": true,
|
|
72
|
+
"description": "PostgREST instant REST API"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"sname": "supabase-auth",
|
|
76
|
+
"pname": "Supabase Auth",
|
|
77
|
+
"compose": "supabase-auth.yml",
|
|
78
|
+
"installOrder": 5,
|
|
79
|
+
"waitForHealthy": true,
|
|
80
|
+
"required": true,
|
|
81
|
+
"description": "GoTrue authentication service"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"sname": "realtime-dev.supabase-realtime",
|
|
85
|
+
"pname": "Supabase Realtime",
|
|
86
|
+
"compose": "supabase-realtime.yml",
|
|
87
|
+
"installOrder": 6,
|
|
88
|
+
"waitForHealthy": true,
|
|
89
|
+
"required": true,
|
|
90
|
+
"description": "WebSocket-based realtime subscriptions"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"sname": "supabase-imgproxy",
|
|
94
|
+
"pname": "Supabase ImgProxy",
|
|
95
|
+
"compose": "supabase-imgproxy.yml",
|
|
96
|
+
"installOrder": 7,
|
|
97
|
+
"waitForHealthy": true,
|
|
98
|
+
"required": true,
|
|
99
|
+
"description": "On-the-fly image transformation proxy"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"sname": "supabase-storage",
|
|
103
|
+
"pname": "Supabase Storage",
|
|
104
|
+
"compose": "supabase-storage.yml",
|
|
105
|
+
"installOrder": 8,
|
|
106
|
+
"waitForHealthy": true,
|
|
107
|
+
"required": true,
|
|
108
|
+
"description": "File storage API with S3 protocol support"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"sname": "supabase-meta",
|
|
112
|
+
"pname": "Supabase Meta",
|
|
113
|
+
"compose": "supabase-meta.yml",
|
|
114
|
+
"installOrder": 9,
|
|
115
|
+
"waitForHealthy": false,
|
|
116
|
+
"required": true,
|
|
117
|
+
"description": "Postgres introspection API for Studio"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"sname": "supabase-edge-functions",
|
|
121
|
+
"pname": "Supabase Edge Functions",
|
|
122
|
+
"compose": "supabase-functions.yml",
|
|
123
|
+
"installOrder": 10,
|
|
124
|
+
"waitForHealthy": false,
|
|
125
|
+
"required": true,
|
|
126
|
+
"description": "Deno-based serverless edge functions"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"sname": "supabase-pooler",
|
|
130
|
+
"pname": "Supabase Pooler",
|
|
131
|
+
"compose": "supabase-pooler.yml",
|
|
132
|
+
"installOrder": 11,
|
|
133
|
+
"waitForHealthy": true,
|
|
134
|
+
"required": true,
|
|
135
|
+
"description": "Supavisor connection pooler for Postgres"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"sname": "supabase-kong",
|
|
139
|
+
"pname": "Supabase Kong",
|
|
140
|
+
"compose": "supabase-kong.yml",
|
|
141
|
+
"installOrder": 12,
|
|
142
|
+
"waitForHealthy": false,
|
|
143
|
+
"required": true,
|
|
144
|
+
"description": "Kong API gateway — Traefik entrypoint on port 8000"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"requirements": {
|
|
148
|
+
"prerequisites": [
|
|
149
|
+
"prerequisites"
|
|
150
|
+
],
|
|
151
|
+
"apps": []
|
|
152
|
+
},
|
|
153
|
+
"database": {
|
|
154
|
+
"type": "postgresql",
|
|
155
|
+
"containerSname": "supabase-db",
|
|
156
|
+
"name": "postgres",
|
|
157
|
+
"user": "postgres",
|
|
158
|
+
"passwordSecret": "supabase_postgres_password",
|
|
159
|
+
"host": "supabase-db",
|
|
160
|
+
"port": 5432
|
|
161
|
+
},
|
|
162
|
+
"traefik": {
|
|
163
|
+
"supported": true,
|
|
164
|
+
"targetContainer": "supabase-kong",
|
|
165
|
+
"targetPort": 8000
|
|
166
|
+
},
|
|
167
|
+
"dashboard": {
|
|
168
|
+
"enabled": true,
|
|
169
|
+
"location": "local",
|
|
170
|
+
"showStats": true,
|
|
171
|
+
"portVariable": "SUPABASE_PORT"
|
|
172
|
+
},
|
|
173
|
+
"env": {
|
|
174
|
+
"variables": [
|
|
175
|
+
{
|
|
176
|
+
"name": "SUPABASE_PORT",
|
|
177
|
+
"description": "Web interface port (Studio via Kong)",
|
|
178
|
+
"type": "port",
|
|
179
|
+
"default": 8000,
|
|
180
|
+
"prompt": true,
|
|
181
|
+
"required": true,
|
|
182
|
+
"validation": {
|
|
183
|
+
"type": "port",
|
|
184
|
+
"min": 1,
|
|
185
|
+
"max": 65535
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"name": "SUPABASE_PROJECT_NAME",
|
|
190
|
+
"description": "Project name shown in Supabase Studio",
|
|
191
|
+
"type": "string",
|
|
192
|
+
"default": "Deployrr",
|
|
193
|
+
"prompt": true,
|
|
194
|
+
"required": false
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "OPENAI_API_KEY",
|
|
198
|
+
"description": "OpenAI API key for AI assistance in Studio (optional)",
|
|
199
|
+
"type": "string",
|
|
200
|
+
"default": "",
|
|
201
|
+
"prompt": true,
|
|
202
|
+
"required": false
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"secrets": [
|
|
206
|
+
{
|
|
207
|
+
"name": "supabase_postgres_password",
|
|
208
|
+
"description": "PostgreSQL database password",
|
|
209
|
+
"type": "random",
|
|
210
|
+
"length": 32,
|
|
211
|
+
"addToCompose": false
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "supabase_jwt_secret",
|
|
215
|
+
"description": "JWT signing secret",
|
|
216
|
+
"type": "random",
|
|
217
|
+
"length": 40,
|
|
218
|
+
"addToCompose": false
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "supabase_anon_key",
|
|
222
|
+
"description": "Public anonymous API key (JWT)",
|
|
223
|
+
"type": "derived",
|
|
224
|
+
"addToCompose": false
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"name": "supabase_service_role_key",
|
|
228
|
+
"description": "Service role admin API key (JWT)",
|
|
229
|
+
"type": "derived",
|
|
230
|
+
"addToCompose": false
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "supabase_dashboard_password",
|
|
234
|
+
"description": "Dashboard login password",
|
|
235
|
+
"type": "random",
|
|
236
|
+
"length": 32,
|
|
237
|
+
"addToCompose": false
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "supabase_secret_key_base",
|
|
241
|
+
"description": "Secret key base for Realtime and Supavisor",
|
|
242
|
+
"type": "random",
|
|
243
|
+
"length": 64,
|
|
244
|
+
"addToCompose": false
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "supabase_vault_enc_key",
|
|
248
|
+
"description": "Supavisor vault encryption key",
|
|
249
|
+
"type": "random",
|
|
250
|
+
"length": 32,
|
|
251
|
+
"addToCompose": false
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"name": "supabase_pg_meta_crypto_key",
|
|
255
|
+
"description": "Crypto key for Studio and postgres-meta",
|
|
256
|
+
"type": "random",
|
|
257
|
+
"length": 32,
|
|
258
|
+
"addToCompose": false
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "supabase_logflare_public_token",
|
|
262
|
+
"description": "Logflare public access token",
|
|
263
|
+
"type": "random",
|
|
264
|
+
"length": 32,
|
|
265
|
+
"addToCompose": false
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "supabase_logflare_private_token",
|
|
269
|
+
"description": "Logflare private access token",
|
|
270
|
+
"type": "random",
|
|
271
|
+
"length": 32,
|
|
272
|
+
"addToCompose": false
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"name": "supabase_s3_access_key_id",
|
|
276
|
+
"description": "Storage S3 protocol access key ID",
|
|
277
|
+
"type": "random",
|
|
278
|
+
"length": 32,
|
|
279
|
+
"addToCompose": false
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "supabase_s3_access_key_secret",
|
|
283
|
+
"description": "Storage S3 protocol secret key",
|
|
284
|
+
"type": "random",
|
|
285
|
+
"length": 64,
|
|
286
|
+
"addToCompose": false
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"name": "supabase_pooler_tenant_id",
|
|
290
|
+
"description": "Supavisor pooler tenant identifier",
|
|
291
|
+
"type": "random",
|
|
292
|
+
"length": 20,
|
|
293
|
+
"addToCompose": false
|
|
294
|
+
}
|
|
295
|
+
]
|
|
296
|
+
},
|
|
297
|
+
"hooks": {
|
|
298
|
+
"preInstall": {
|
|
299
|
+
"script": "files/pre-install.sh"
|
|
300
|
+
},
|
|
301
|
+
"postInstall": {
|
|
302
|
+
"messages": [
|
|
303
|
+
{
|
|
304
|
+
"style": "note",
|
|
305
|
+
"text": "Supabase uses \\Z513 containers\\Zn: Studio, Kong, Auth, REST, Realtime, Storage, ImgProxy, Meta, Functions, Analytics, DB, Vector, and Pooler."
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"style": "note",
|
|
309
|
+
"text": "Dashboard login: username \\Z5supabase\\Zn, password stored in \\Z4$DOCKER_FOLDER/secrets/supabase_dashboard_password\\Zn"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"style": "note",
|
|
313
|
+
"text": "Access at \\Z4https://supabase.$DOMAINNAME_1\\Zn — all API routes go through Kong gateway."
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"style": "note",
|
|
317
|
+
"text": "All secrets stored in \\Z4$DOCKER_FOLDER/secrets/\\Zn (supabase_*)."
|
|
318
|
+
}
|
|
319
|
+
]
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"status": {
|
|
323
|
+
"file": "07_supabase_status",
|
|
324
|
+
"successMessage": "Supabase Setup Completed",
|
|
325
|
+
"telemetryAction": "supabase"
|
|
326
|
+
}
|
|
327
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase Analytics - Logflare
|
|
3
|
+
supabase-analytics:
|
|
4
|
+
container_name: supabase-analytics
|
|
5
|
+
image: supabase/logflare:${SUPABASEANALYTICS_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
healthcheck:
|
|
11
|
+
test: ["CMD", "curl", "http://127.0.0.1:4000/health"]
|
|
12
|
+
timeout: 5s
|
|
13
|
+
interval: 5s
|
|
14
|
+
retries: 10
|
|
15
|
+
networks:
|
|
16
|
+
- default
|
|
17
|
+
environment:
|
|
18
|
+
- LOGFLARE_NODE_HOST=127.0.0.1
|
|
19
|
+
- DB_USERNAME=supabase_admin
|
|
20
|
+
- DB_DATABASE=_supabase
|
|
21
|
+
- DB_HOSTNAME=supabase-db
|
|
22
|
+
- DB_PORT=5432
|
|
23
|
+
- DB_PASSWORD=POSTGRES-PASSWORD-PLACEHOLDER
|
|
24
|
+
- DB_SCHEMA=_analytics
|
|
25
|
+
- LOGFLARE_PUBLIC_ACCESS_TOKEN=LOGFLARE-PUBLIC-TOKEN-PLACEHOLDER
|
|
26
|
+
- LOGFLARE_PRIVATE_ACCESS_TOKEN=LOGFLARE-PRIVATE-TOKEN-PLACEHOLDER
|
|
27
|
+
- LOGFLARE_SINGLE_TENANT=true
|
|
28
|
+
- LOGFLARE_SUPABASE_MODE=true
|
|
29
|
+
- POSTGRES_BACKEND_URL=postgresql://supabase_admin:POSTGRES-PASSWORD-PLACEHOLDER@supabase-db:5432/_supabase
|
|
30
|
+
- POSTGRES_BACKEND_SCHEMA=_analytics
|
|
31
|
+
- LOGFLARE_FEATURE_FLAG_OVERRIDE=multibackend=true
|
|
32
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase Auth - GoTrue Authentication
|
|
3
|
+
supabase-auth:
|
|
4
|
+
container_name: supabase-auth
|
|
5
|
+
image: supabase/gotrue:${SUPABASEAUTH_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
healthcheck:
|
|
11
|
+
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:9999/health"]
|
|
12
|
+
timeout: 5s
|
|
13
|
+
interval: 5s
|
|
14
|
+
retries: 3
|
|
15
|
+
networks:
|
|
16
|
+
- default
|
|
17
|
+
environment:
|
|
18
|
+
- GOTRUE_API_HOST=0.0.0.0
|
|
19
|
+
- GOTRUE_API_PORT=9999
|
|
20
|
+
- API_EXTERNAL_URL=https://supabase.${DOMAINNAME_1}
|
|
21
|
+
- GOTRUE_DB_DRIVER=postgres
|
|
22
|
+
- GOTRUE_DB_DATABASE_URL=postgres://supabase_auth_admin:POSTGRES-PASSWORD-PLACEHOLDER@supabase-db:5432/postgres
|
|
23
|
+
- GOTRUE_SITE_URL=https://supabase.${DOMAINNAME_1}
|
|
24
|
+
- GOTRUE_URI_ALLOW_LIST=
|
|
25
|
+
- GOTRUE_DISABLE_SIGNUP=false
|
|
26
|
+
- GOTRUE_JWT_ADMIN_ROLES=service_role
|
|
27
|
+
- GOTRUE_JWT_AUD=authenticated
|
|
28
|
+
- GOTRUE_JWT_DEFAULT_GROUP_NAME=authenticated
|
|
29
|
+
- GOTRUE_JWT_EXP=3600
|
|
30
|
+
- GOTRUE_JWT_SECRET=JWT-SECRET-PLACEHOLDER
|
|
31
|
+
- GOTRUE_EXTERNAL_EMAIL_ENABLED=true
|
|
32
|
+
- GOTRUE_EXTERNAL_ANONYMOUS_USERS_ENABLED=false
|
|
33
|
+
- GOTRUE_MAILER_AUTOCONFIRM=true
|
|
34
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase DB - PostgreSQL Database
|
|
3
|
+
supabase-db:
|
|
4
|
+
container_name: supabase-db
|
|
5
|
+
image: supabase/postgres:${SUPABASEDB_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
healthcheck:
|
|
11
|
+
test: ["CMD", "pg_isready", "-U", "postgres", "-h", "127.0.0.1"]
|
|
12
|
+
interval: 5s
|
|
13
|
+
timeout: 5s
|
|
14
|
+
retries: 10
|
|
15
|
+
networks:
|
|
16
|
+
- default
|
|
17
|
+
volumes:
|
|
18
|
+
- $DOCKERDIR/appdata/supabase/volumes/db/realtime.sql:/docker-entrypoint-initdb.d/migrations/99-realtime.sql:Z
|
|
19
|
+
- $DOCKERDIR/appdata/supabase/volumes/db/webhooks.sql:/docker-entrypoint-initdb.d/init-scripts/98-webhooks.sql:Z
|
|
20
|
+
- $DOCKERDIR/appdata/supabase/volumes/db/roles.sql:/docker-entrypoint-initdb.d/init-scripts/99-roles.sql:Z
|
|
21
|
+
- $DOCKERDIR/appdata/supabase/volumes/db/jwt.sql:/docker-entrypoint-initdb.d/init-scripts/99-jwt.sql:Z
|
|
22
|
+
- $DOCKERDIR/appdata/supabase/volumes/db/_supabase.sql:/docker-entrypoint-initdb.d/migrations/97-_supabase.sql:Z
|
|
23
|
+
- $DOCKERDIR/appdata/supabase/volumes/db/logs.sql:/docker-entrypoint-initdb.d/migrations/99-logs.sql:Z
|
|
24
|
+
- $DOCKERDIR/appdata/supabase/volumes/db/pooler.sql:/docker-entrypoint-initdb.d/migrations/99-pooler.sql:Z
|
|
25
|
+
- $DOCKERDIR/appdata/supabase-db/data:/var/lib/postgresql/data:Z
|
|
26
|
+
environment:
|
|
27
|
+
- POSTGRES_HOST=/var/run/postgresql
|
|
28
|
+
- PGPORT=5432
|
|
29
|
+
- POSTGRES_PORT=5432
|
|
30
|
+
- PGPASSWORD=POSTGRES-PASSWORD-PLACEHOLDER
|
|
31
|
+
- POSTGRES_PASSWORD=POSTGRES-PASSWORD-PLACEHOLDER
|
|
32
|
+
- PGDATABASE=postgres
|
|
33
|
+
- POSTGRES_DB=postgres
|
|
34
|
+
- JWT_SECRET=JWT-SECRET-PLACEHOLDER
|
|
35
|
+
- JWT_EXP=3600
|
|
36
|
+
command:
|
|
37
|
+
- postgres
|
|
38
|
+
- -c
|
|
39
|
+
- config_file=/etc/postgresql/postgresql.conf
|
|
40
|
+
- -c
|
|
41
|
+
- log_min_messages=fatal
|
|
42
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase Edge Functions - Deno Runtime
|
|
3
|
+
supabase-edge-functions:
|
|
4
|
+
container_name: supabase-edge-functions
|
|
5
|
+
image: supabase/edge-runtime:${SUPABASEFUNCTIONS_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
volumes:
|
|
13
|
+
- $DOCKERDIR/appdata/supabase/volumes/functions:/home/deno/functions:Z
|
|
14
|
+
- $DOCKERDIR/appdata/supabase/deno-cache:/root/.cache/deno
|
|
15
|
+
environment:
|
|
16
|
+
- JWT_SECRET=JWT-SECRET-PLACEHOLDER
|
|
17
|
+
- SUPABASE_URL=http://supabase-kong:8000
|
|
18
|
+
- SUPABASE_PUBLIC_URL=https://supabase.${DOMAINNAME_1}
|
|
19
|
+
- SUPABASE_ANON_KEY=ANON-KEY-PLACEHOLDER
|
|
20
|
+
- SUPABASE_SERVICE_ROLE_KEY=SERVICE-ROLE-KEY-PLACEHOLDER
|
|
21
|
+
- SUPABASE_DB_URL=postgresql://postgres:POSTGRES-PASSWORD-PLACEHOLDER@supabase-db:5432/postgres
|
|
22
|
+
- VERIFY_JWT=false
|
|
23
|
+
command: ["start", "--main-service", "/home/deno/functions/main"]
|
|
24
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase ImgProxy - Image Transformation
|
|
3
|
+
supabase-imgproxy:
|
|
4
|
+
container_name: supabase-imgproxy
|
|
5
|
+
image: darthsim/imgproxy:${SUPABASEIMGPROXY_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
healthcheck:
|
|
11
|
+
test: ["CMD", "imgproxy", "health"]
|
|
12
|
+
timeout: 5s
|
|
13
|
+
interval: 5s
|
|
14
|
+
retries: 3
|
|
15
|
+
networks:
|
|
16
|
+
- default
|
|
17
|
+
volumes:
|
|
18
|
+
- $DOCKERDIR/appdata/supabase/storage:/var/lib/storage:z
|
|
19
|
+
environment:
|
|
20
|
+
- IMGPROXY_BIND=:5001
|
|
21
|
+
- IMGPROXY_LOCAL_FILESYSTEM_ROOT=/
|
|
22
|
+
- IMGPROXY_USE_ETAG=true
|
|
23
|
+
- IMGPROXY_ENABLE_WEBP_DETECTION=true
|
|
24
|
+
- IMGPROXY_MAX_SRC_RESOLUTION=16.8
|
|
25
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase Kong - API Gateway
|
|
3
|
+
supabase-kong:
|
|
4
|
+
container_name: supabase-kong
|
|
5
|
+
image: kong:${SUPABASEKONG_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- ${SUPABASE_PORT:-8000}:8000/tcp
|
|
14
|
+
- ${SUPABASE_KONG_HTTPS_PORT:-8443}:8443/tcp
|
|
15
|
+
volumes:
|
|
16
|
+
- $DOCKERDIR/appdata/supabase/volumes/api/kong.yml:/home/kong/temp.yml:ro
|
|
17
|
+
environment:
|
|
18
|
+
- KONG_DATABASE=off
|
|
19
|
+
- KONG_DECLARATIVE_CONFIG=/home/kong/kong.yml
|
|
20
|
+
- KONG_DNS_ORDER=LAST,A,CNAME
|
|
21
|
+
- KONG_PLUGINS=request-transformer,cors,key-auth,acl,basic-auth
|
|
22
|
+
- KONG_NGINX_PROXY_PROXY_BUFFER_SIZE=160k
|
|
23
|
+
- KONG_NGINX_PROXY_PROXY_BUFFERS=64 160k
|
|
24
|
+
- SUPABASE_ANON_KEY=ANON-KEY-PLACEHOLDER
|
|
25
|
+
- SUPABASE_SERVICE_KEY=SERVICE-ROLE-KEY-PLACEHOLDER
|
|
26
|
+
- DASHBOARD_USERNAME=DASHBOARD-USERNAME-PLACEHOLDER
|
|
27
|
+
- DASHBOARD_PASSWORD=DASHBOARD-PASSWORD-PLACEHOLDER
|
|
28
|
+
entrypoint: >
|
|
29
|
+
bash -c 'eval "echo \"$$(cat /home/kong/temp.yml)\"" > /home/kong/kong.yml && /docker-entrypoint.sh kong docker-start'
|
|
30
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase Meta - Postgres Introspection API
|
|
3
|
+
supabase-meta:
|
|
4
|
+
container_name: supabase-meta
|
|
5
|
+
image: supabase/postgres-meta:${SUPABASEMETA_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
environment:
|
|
13
|
+
- PG_META_PORT=8080
|
|
14
|
+
- PG_META_DB_HOST=supabase-db
|
|
15
|
+
- PG_META_DB_PORT=5432
|
|
16
|
+
- PG_META_DB_NAME=postgres
|
|
17
|
+
- PG_META_DB_USER=supabase_admin
|
|
18
|
+
- PG_META_DB_PASSWORD=POSTGRES-PASSWORD-PLACEHOLDER
|
|
19
|
+
- CRYPTO_KEY=PG-META-CRYPTO-KEY-PLACEHOLDER
|
|
20
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase Pooler - Supavisor Connection Pooler
|
|
3
|
+
supabase-pooler:
|
|
4
|
+
container_name: supabase-pooler
|
|
5
|
+
image: supabase/supavisor:${SUPABASEPOOLER_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
healthcheck:
|
|
11
|
+
test: ["CMD", "curl", "-sSfL", "--head", "-o", "/dev/null", "http://127.0.0.1:4000/api/health"]
|
|
12
|
+
interval: 10s
|
|
13
|
+
timeout: 5s
|
|
14
|
+
retries: 5
|
|
15
|
+
networks:
|
|
16
|
+
- default
|
|
17
|
+
ports:
|
|
18
|
+
- ${SUPABASE_POOLER_PORT:-5432}:5432
|
|
19
|
+
- ${SUPABASE_POOLER_PROXY_PORT:-6543}:6543
|
|
20
|
+
volumes:
|
|
21
|
+
- $DOCKERDIR/appdata/supabase/volumes/pooler/pooler.exs:/etc/pooler/pooler.exs:ro
|
|
22
|
+
environment:
|
|
23
|
+
- PORT=4000
|
|
24
|
+
- POSTGRES_HOST=supabase-db
|
|
25
|
+
- POSTGRES_PORT=5432
|
|
26
|
+
- POSTGRES_DB=postgres
|
|
27
|
+
- POSTGRES_PASSWORD=POSTGRES-PASSWORD-PLACEHOLDER
|
|
28
|
+
- DATABASE_URL=ecto://supabase_admin:POSTGRES-PASSWORD-PLACEHOLDER@supabase-db:5432/_supabase
|
|
29
|
+
- CLUSTER_POSTGRES=true
|
|
30
|
+
- SECRET_KEY_BASE=SECRET-KEY-BASE-PLACEHOLDER
|
|
31
|
+
- VAULT_ENC_KEY=VAULT-ENC-KEY-PLACEHOLDER
|
|
32
|
+
- API_JWT_SECRET=JWT-SECRET-PLACEHOLDER
|
|
33
|
+
- METRICS_JWT_SECRET=JWT-SECRET-PLACEHOLDER
|
|
34
|
+
- REGION=local
|
|
35
|
+
- ERL_AFLAGS=-proto_dist inet_tcp
|
|
36
|
+
- POOLER_TENANT_ID=POOLER-TENANT-ID-PLACEHOLDER
|
|
37
|
+
- POOLER_DEFAULT_POOL_SIZE=20
|
|
38
|
+
- POOLER_MAX_CLIENT_CONN=100
|
|
39
|
+
- POOLER_POOL_MODE=transaction
|
|
40
|
+
- DB_POOL_SIZE=5
|
|
41
|
+
command:
|
|
42
|
+
- /bin/sh
|
|
43
|
+
- -c
|
|
44
|
+
- "/app/bin/migrate && /app/bin/supavisor eval \"$$(cat /etc/pooler/pooler.exs)\" && /app/bin/server"
|
|
45
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase Realtime - WebSocket Server
|
|
3
|
+
realtime-dev.supabase-realtime:
|
|
4
|
+
container_name: realtime-dev.supabase-realtime
|
|
5
|
+
image: supabase/realtime:${SUPABASEREALTIME_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
healthcheck:
|
|
11
|
+
test: ["CMD", "curl", "-sSfL", "--head", "-o", "/dev/null", "-H", "Authorization: Bearer ANON-KEY-PLACEHOLDER", "http://127.0.0.1:4000/api/tenants/realtime-dev/health"]
|
|
12
|
+
interval: 30s
|
|
13
|
+
timeout: 5s
|
|
14
|
+
retries: 3
|
|
15
|
+
start_period: 10s
|
|
16
|
+
networks:
|
|
17
|
+
- default
|
|
18
|
+
environment:
|
|
19
|
+
- PORT=4000
|
|
20
|
+
- DB_HOST=supabase-db
|
|
21
|
+
- DB_PORT=5432
|
|
22
|
+
- DB_USER=supabase_admin
|
|
23
|
+
- DB_PASSWORD=POSTGRES-PASSWORD-PLACEHOLDER
|
|
24
|
+
- DB_NAME=postgres
|
|
25
|
+
- DB_AFTER_CONNECT_QUERY=SET search_path TO _realtime
|
|
26
|
+
- DB_ENC_KEY=supabaserealtime
|
|
27
|
+
- API_JWT_SECRET=JWT-SECRET-PLACEHOLDER
|
|
28
|
+
- SECRET_KEY_BASE=SECRET-KEY-BASE-PLACEHOLDER
|
|
29
|
+
- ERL_AFLAGS=-proto_dist inet_tcp
|
|
30
|
+
- ENABLE_TAILWIND=false
|
|
31
|
+
- DNS_NODES="''"
|
|
32
|
+
- RLIMIT_NOFILE=10000
|
|
33
|
+
- APP_NAME=realtime
|
|
34
|
+
- SEED_SELF_HOST=true
|
|
35
|
+
- RUN_JANITOR=true
|
|
36
|
+
- DISABLE_HEALTHCHECK_LOGGING=true
|
|
37
|
+
- FLY_ALLOC_ID=abc123
|
|
38
|
+
- FLY_APP_NAME=realtime
|
|
39
|
+
- ENABLE_CONNECTED_USERS_TRACKING=true
|
|
40
|
+
command: >
|
|
41
|
+
sh -c "/app/bin/migrate && /app/bin/realtime eval 'Realtime.Release.seeds(Realtime.Repo)' && /app/bin/server"
|
|
42
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Supabase REST - PostgREST API
|
|
3
|
+
supabase-rest:
|
|
4
|
+
container_name: supabase-rest
|
|
5
|
+
image: postgrest/postgrest:${SUPABASEREST_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["apps", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
environment:
|
|
13
|
+
- PGRST_DB_URI=postgres://authenticator:POSTGRES-PASSWORD-PLACEHOLDER@supabase-db:5432/postgres
|
|
14
|
+
- PGRST_DB_SCHEMAS=public,storage,graphql_public
|
|
15
|
+
- PGRST_DB_ANON_ROLE=anon
|
|
16
|
+
- PGRST_JWT_SECRET=JWT-SECRET-PLACEHOLDER
|
|
17
|
+
- PGRST_DB_USE_LEGACY_GUCS=false
|
|
18
|
+
- PGRST_APP_SETTINGS_JWT_SECRET=JWT-SECRET-PLACEHOLDER
|
|
19
|
+
- PGRST_APP_SETTINGS_JWT_EXP=3600
|
|
20
|
+
command: ["postgrest"]
|
|
21
|
+
# DOCKER-LABELS-PLACEHOLDER
|