@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,45 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Authelia (Lite) - Self-Hosted Single Sign-On and Two-Factor Authentication
|
|
3
|
+
authelia:
|
|
4
|
+
container_name: authelia
|
|
5
|
+
image: authelia/authelia:${AUTHELIA_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["core", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
- traefik_proxy
|
|
13
|
+
depends_on:
|
|
14
|
+
authelia-redis:
|
|
15
|
+
condition: service_healthy
|
|
16
|
+
# ports:
|
|
17
|
+
# - "$AUTHELIA_PORT:9091"
|
|
18
|
+
volumes:
|
|
19
|
+
- $DOCKERDIR/appdata/authelia:/config
|
|
20
|
+
environment:
|
|
21
|
+
- TZ=$TZ
|
|
22
|
+
- PUID=$PUID
|
|
23
|
+
- PGID=$PGID
|
|
24
|
+
- AUTHELIA_IDENTITY_VALIDATION_RESET_PASSWORD_JWT_SECRET_FILE=/run/secrets/authelia_jwt_secret
|
|
25
|
+
- AUTHELIA_SESSION_SECRET_FILE=/run/secrets/authelia_session_secret
|
|
26
|
+
- AUTHELIA_STORAGE_ENCRYPTION_KEY_FILE=/run/secrets/authelia_storage_encryption_key
|
|
27
|
+
# - AUTHELIA_STORAGE_MYSQL_PASSWORD_FILE=/run/secrets/authelia_storage_mysql_password
|
|
28
|
+
# - AUTHELIA_SESSION_REDIS_PASSWORD_FILE=/run/secrets/authelia_session_redis_password
|
|
29
|
+
# - AUTHELIA_DUO_API_INTEGRATION_KEY_FILE=/run/secrets/authelia_duo_api_integration_key
|
|
30
|
+
# - AUTHELIA_DUO_API_SECRET_KEY_FILE=/run/secrets/authelia_duo_api_secret_key
|
|
31
|
+
secrets:
|
|
32
|
+
- authelia_jwt_secret
|
|
33
|
+
- authelia_storage_encryption_key
|
|
34
|
+
- authelia_session_secret
|
|
35
|
+
labels:
|
|
36
|
+
- "traefik.enable=true"
|
|
37
|
+
## HTTP Routers
|
|
38
|
+
- "traefik.http.routers.authelia-rtr.entrypoints=websecure-internal,websecure-external"
|
|
39
|
+
- "traefik.http.routers.authelia-rtr.rule=Host(`authelia.$DOMAINNAME_1`)"
|
|
40
|
+
## Middlewares
|
|
41
|
+
- "traefik.http.routers.authelia-rtr.middlewares=chain-no-auth@file" # Should be chain-no-auth and not chain-authelia
|
|
42
|
+
## HTTP Services
|
|
43
|
+
- "traefik.http.routers.authelia-rtr.service=authelia-svc"
|
|
44
|
+
- "traefik.http.services.authelia-svc.loadbalancer.server.port=9091"
|
|
45
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
###############################################################
|
|
2
|
+
# Authelia configuration #
|
|
3
|
+
###############################################################
|
|
4
|
+
|
|
5
|
+
server:
|
|
6
|
+
address: tcp://0.0.0.0:9091/
|
|
7
|
+
buffers:
|
|
8
|
+
read: 4096
|
|
9
|
+
write: 4096
|
|
10
|
+
endpoints:
|
|
11
|
+
enable_pprof: false
|
|
12
|
+
enable_expvars: false
|
|
13
|
+
disable_healthcheck: false
|
|
14
|
+
tls:
|
|
15
|
+
key: ""
|
|
16
|
+
certificate: ""
|
|
17
|
+
|
|
18
|
+
# https://www.authelia.com/configuration/miscellaneous/logging/
|
|
19
|
+
log:
|
|
20
|
+
level: info
|
|
21
|
+
format: text
|
|
22
|
+
file_path: /config/authelia.log
|
|
23
|
+
keep_stdout: true
|
|
24
|
+
|
|
25
|
+
# https://www.authelia.com/configuration/second-factor/time-based-one-time-password/
|
|
26
|
+
totp:
|
|
27
|
+
issuer: example.com
|
|
28
|
+
period: 30
|
|
29
|
+
skew: 1
|
|
30
|
+
|
|
31
|
+
# AUTHELIA_DUO_PLACEHOLDER
|
|
32
|
+
|
|
33
|
+
# https://www.authelia.com/reference/guides/passwords/
|
|
34
|
+
authentication_backend:
|
|
35
|
+
password_reset:
|
|
36
|
+
disable: false
|
|
37
|
+
refresh_interval: 5m
|
|
38
|
+
file:
|
|
39
|
+
path: /config/users.yml
|
|
40
|
+
password:
|
|
41
|
+
algorithm: argon2id
|
|
42
|
+
iterations: 1
|
|
43
|
+
salt_length: 16
|
|
44
|
+
parallelism: 8
|
|
45
|
+
memory: 256 # blocks this much of the RAM
|
|
46
|
+
|
|
47
|
+
# https://www.authelia.com/overview/authorization/access-control/
|
|
48
|
+
access_control:
|
|
49
|
+
default_policy: deny
|
|
50
|
+
rules:
|
|
51
|
+
# - domain:
|
|
52
|
+
# - "*.example.com"
|
|
53
|
+
# - "example.com"
|
|
54
|
+
# policy: bypass
|
|
55
|
+
# networks: # bypass authentication for local networks
|
|
56
|
+
# - 10.0.0.0/8
|
|
57
|
+
# - 192.168.0.0/16
|
|
58
|
+
# - 172.16.0.0/12
|
|
59
|
+
- domain:
|
|
60
|
+
- "*.example.com"
|
|
61
|
+
- "example.com"
|
|
62
|
+
policy: two_factor
|
|
63
|
+
|
|
64
|
+
# https://www.authelia.com/configuration/session/introduction/
|
|
65
|
+
session:
|
|
66
|
+
name: authelia_session
|
|
67
|
+
same_site: lax
|
|
68
|
+
expiration: 7h
|
|
69
|
+
inactivity: 5m
|
|
70
|
+
remember_me: 1M
|
|
71
|
+
cookies:
|
|
72
|
+
- domain: 'example.com'
|
|
73
|
+
authelia_url: 'https://authelia.example.com'
|
|
74
|
+
default_redirection_url: 'https://example.com'
|
|
75
|
+
redis:
|
|
76
|
+
host: authelia-redis
|
|
77
|
+
port: 6379
|
|
78
|
+
database_index: 0
|
|
79
|
+
maximum_active_connections: 10
|
|
80
|
+
minimum_idle_connections: 0
|
|
81
|
+
|
|
82
|
+
# https://www.authelia.com/configuration/security/regulation/
|
|
83
|
+
regulation:
|
|
84
|
+
max_retries: 3
|
|
85
|
+
find_time: 10m
|
|
86
|
+
ban_time: 12h
|
|
87
|
+
|
|
88
|
+
# https://www.authelia.com/configuration/storage/introduction/
|
|
89
|
+
storage:
|
|
90
|
+
# For local storage, uncomment lines below and comment out mysql. https://docs.authelia.com/configuration/storage/sqlite.html
|
|
91
|
+
# This is good for the beginning. If you have a busy site then switch to other databases.
|
|
92
|
+
local:
|
|
93
|
+
path: /config/db.sqlite3
|
|
94
|
+
|
|
95
|
+
# https://www.authelia.com/configuration/notifications/introduction/
|
|
96
|
+
notifier:
|
|
97
|
+
disable_startup_check: false
|
|
98
|
+
# For testing purposes, notifications can be sent in a file. Be sure to map the volume in docker-compose.
|
|
99
|
+
filesystem:
|
|
100
|
+
filename: /config/notifications.txt
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
###############################################################
|
|
2
|
+
# Users Database #
|
|
3
|
+
###############################################################
|
|
4
|
+
|
|
5
|
+
# This file can be used if you do not have an LDAP set up.
|
|
6
|
+
|
|
7
|
+
# List of users
|
|
8
|
+
users:
|
|
9
|
+
AUTHELIA_USERNAME:
|
|
10
|
+
disabled: false
|
|
11
|
+
displayname: "AUTHELIA_USER_DISPLAY_NAME"
|
|
12
|
+
email: AUTHELIA_USER_EMAIL
|
|
13
|
+
password: AUTHELIA_HASHED_PASSWORD
|
|
14
|
+
groups:
|
|
15
|
+
- admins
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "authelia",
|
|
7
|
+
"pname": "Authelia",
|
|
8
|
+
"descriptionShort": "Open-source Access/Identity Provider",
|
|
9
|
+
"icon": "sh-authelia",
|
|
10
|
+
"category": "core"
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"deployment": {
|
|
14
|
+
"type": "multicontainer",
|
|
15
|
+
"compose": "compose.yml",
|
|
16
|
+
"webui": true,
|
|
17
|
+
"port": 9091,
|
|
18
|
+
"protocol": "https"
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
"dependencies": [
|
|
22
|
+
{
|
|
23
|
+
"sname": "authelia-redis",
|
|
24
|
+
"pname": "Authelia Redis",
|
|
25
|
+
"compose": "authelia-redis.yml",
|
|
26
|
+
"installOrder": 1,
|
|
27
|
+
"waitForHealthy": true,
|
|
28
|
+
"description": "Redis session store for Authelia"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
|
|
32
|
+
"requirements": {
|
|
33
|
+
"prerequisites": ["prerequisites", "socket_proxy_running", "traefik_production", "traefik_running", "hybrid_mode"],
|
|
34
|
+
"apps": ["socket-proxy", "traefik"]
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
"files": [
|
|
38
|
+
{
|
|
39
|
+
"source": "files/configuration.yml",
|
|
40
|
+
"destination": "$DOCKER_FOLDER/appdata/authelia/configuration.yml",
|
|
41
|
+
"backup": true
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"source": "files/users.yml",
|
|
45
|
+
"destination": "$DOCKER_FOLDER/appdata/authelia/users.yml",
|
|
46
|
+
"backup": true
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"source": "files/middlewares-authelia.yml",
|
|
50
|
+
"destination": "$DOCKER_FOLDER/appdata/traefik3/rules/$HOSTNAME/middlewares-authelia.yml",
|
|
51
|
+
"backup": false
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"source": "files/chain-authelia.yml",
|
|
55
|
+
"destination": "$DOCKER_FOLDER/appdata/traefik3/rules/$HOSTNAME/chain-authelia.yml",
|
|
56
|
+
"backup": false
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
|
|
60
|
+
"placeholders": {
|
|
61
|
+
"config": {
|
|
62
|
+
"configuration.yml": {
|
|
63
|
+
"example.com": "$DOMAINNAME_1"
|
|
64
|
+
},
|
|
65
|
+
"users.yml": {
|
|
66
|
+
"AUTHELIA_USERNAME": "$AUTHELIA_USERNAME",
|
|
67
|
+
"AUTHELIA_USER_DISPLAY_NAME": "$AUTHELIA_USER_DISPLAY_NAME",
|
|
68
|
+
"AUTHELIA_HASHED_PASSWORD": "$AUTHELIA_HASHED_PASSWORD",
|
|
69
|
+
"AUTHELIA_USER_EMAIL": "$AUTHELIA_USER_EMAIL"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
"traefik": {
|
|
75
|
+
"supported": true,
|
|
76
|
+
"subdomain": "authelia",
|
|
77
|
+
"chain": "chain-no-auth",
|
|
78
|
+
"middlewares": ["middlewares-authelia.yml", "chain-authelia.yml"]
|
|
79
|
+
},
|
|
80
|
+
|
|
81
|
+
"dashboard": {
|
|
82
|
+
"enabled": true,
|
|
83
|
+
"location": "other",
|
|
84
|
+
"showStats": true,
|
|
85
|
+
"portVariable": null
|
|
86
|
+
},
|
|
87
|
+
|
|
88
|
+
"env": {
|
|
89
|
+
"variables": [
|
|
90
|
+
{
|
|
91
|
+
"name": "AUTHELIA_VERSION_PIN",
|
|
92
|
+
"type": "string",
|
|
93
|
+
"default": "latest",
|
|
94
|
+
"prompt": false,
|
|
95
|
+
"required": true
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "AUTHELIA_USERNAME",
|
|
99
|
+
"type": "string",
|
|
100
|
+
"default": "",
|
|
101
|
+
"prompt": true,
|
|
102
|
+
"required": true,
|
|
103
|
+
"promptText": "Enter/edit Authelia Username:"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "AUTHELIA_USER_DISPLAY_NAME",
|
|
107
|
+
"type": "string",
|
|
108
|
+
"default": "",
|
|
109
|
+
"prompt": true,
|
|
110
|
+
"required": true,
|
|
111
|
+
"promptText": "Enter/edit Authelia User Display Name (use underscore in place of space):"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "AUTHELIA_USER_EMAIL",
|
|
115
|
+
"type": "string",
|
|
116
|
+
"default": "",
|
|
117
|
+
"prompt": true,
|
|
118
|
+
"required": true,
|
|
119
|
+
"promptText": "Enter/edit Authelia User Email.\n\nIt can be anything because we won't actually be using email for device validation:"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"secrets": [
|
|
123
|
+
{
|
|
124
|
+
"name": "authelia_text_password",
|
|
125
|
+
"type": "password",
|
|
126
|
+
"generateDefault": true,
|
|
127
|
+
"generateLength": 16,
|
|
128
|
+
"promptText": "Enter a strong password or use the suggested random password (note it down):"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "authelia_jwt_secret",
|
|
132
|
+
"type": "random",
|
|
133
|
+
"generateDefault": true,
|
|
134
|
+
"generateLength": 64
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "authelia_session_secret",
|
|
138
|
+
"type": "random",
|
|
139
|
+
"generateDefault": true,
|
|
140
|
+
"generateLength": 64
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "authelia_storage_encryption_key",
|
|
144
|
+
"type": "random",
|
|
145
|
+
"generateDefault": true,
|
|
146
|
+
"generateLength": 64
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
|
|
151
|
+
"status": {
|
|
152
|
+
"file": "05_authelia_status",
|
|
153
|
+
"successMessage": "Authelia Setup Completed",
|
|
154
|
+
"telemetryAction": "authelia"
|
|
155
|
+
}
|
|
156
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# Authentik PostgreSQL - Dedicated Database for Authentik
|
|
3
|
+
authentik-postgresql:
|
|
4
|
+
container_name: authentik-postgresql
|
|
5
|
+
image: postgres:${AUTHENTIKPOSTGRESQL_VERSION_PIN}
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["core", "all"]
|
|
10
|
+
healthcheck:
|
|
11
|
+
test: ["CMD-SHELL", "pg_isready -d authentik -U authentik_db_user"]
|
|
12
|
+
start_period: 20s
|
|
13
|
+
interval: 30s
|
|
14
|
+
retries: 5
|
|
15
|
+
timeout: 5s
|
|
16
|
+
networks:
|
|
17
|
+
- default
|
|
18
|
+
volumes:
|
|
19
|
+
- $DOCKERDIR/appdata/authentik-postgresql:/var/lib/postgresql/data
|
|
20
|
+
environment:
|
|
21
|
+
- POSTGRES_DB=authentik
|
|
22
|
+
- POSTGRES_USER=authentik_db_user
|
|
23
|
+
- POSTGRES_PASSWORD_FILE=/run/secrets/authentik_postgresql_password
|
|
24
|
+
secrets:
|
|
25
|
+
- authentik_postgresql_password
|
|
26
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
services:
|
|
2
|
+
authentik-worker:
|
|
3
|
+
image: ghcr.io/goauthentik/server:${AUTHENTIKWORKER_VERSION_PIN}
|
|
4
|
+
container_name: authentik-worker
|
|
5
|
+
security_opt:
|
|
6
|
+
- no-new-privileges:true
|
|
7
|
+
restart: unless-stopped
|
|
8
|
+
profiles: ["core", "all"]
|
|
9
|
+
networks:
|
|
10
|
+
- default
|
|
11
|
+
- traefik_proxy
|
|
12
|
+
- socket_proxy
|
|
13
|
+
command: worker
|
|
14
|
+
user: ${PUID}:${PGID}
|
|
15
|
+
depends_on:
|
|
16
|
+
authentik-postgresql:
|
|
17
|
+
condition: service_healthy
|
|
18
|
+
authentik:
|
|
19
|
+
condition: service_healthy
|
|
20
|
+
environment:
|
|
21
|
+
- DOCKER_HOST=${DOCKER_HOST}
|
|
22
|
+
- AUTHENTIK_POSTGRESQL__HOST=authentik-postgresql
|
|
23
|
+
- AUTHENTIK_POSTGRESQL__NAME=authentik
|
|
24
|
+
- AUTHENTIK_POSTGRESQL__USER=authentik_db_user
|
|
25
|
+
- AUTHENTIK_POSTGRESQL__PASSWORD=${AUTHENTIK_POSTGRESQL__PASSWORD}
|
|
26
|
+
- AUTHENTIK_SECRET_KEY=${AUTHENTIK_SECRET_KEY}
|
|
27
|
+
- AUTHENTIK_LOG_LEVEL=info # debug, info, warning, error, trace
|
|
28
|
+
- AUTHENTIK_DISABLE_STARTUP_ANALYTICS=true
|
|
29
|
+
- AUTHENTIK_DISABLE_UPDATE_CHECK=false
|
|
30
|
+
- AUTHENTIK_ERROR_REPORTING__ENABLED=false
|
|
31
|
+
secrets:
|
|
32
|
+
- authentik_postgresql_password
|
|
33
|
+
- authentik_secret_key
|
|
34
|
+
volumes:
|
|
35
|
+
- $DOCKERDIR/appdata/authentik/media:/media
|
|
36
|
+
- $DOCKERDIR/appdata/authentik/custom-templates:/templates
|
|
37
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
services:
|
|
2
|
+
authentik:
|
|
3
|
+
image: ghcr.io/goauthentik/server:${AUTHENTIK_VERSION_PIN}
|
|
4
|
+
container_name: authentik
|
|
5
|
+
security_opt:
|
|
6
|
+
- no-new-privileges:true
|
|
7
|
+
restart: unless-stopped
|
|
8
|
+
profiles: [ "core", "all" ]
|
|
9
|
+
networks:
|
|
10
|
+
- default
|
|
11
|
+
- traefik_proxy
|
|
12
|
+
command: server
|
|
13
|
+
user: ${PUID}:${PGID}
|
|
14
|
+
depends_on:
|
|
15
|
+
authentik-postgresql:
|
|
16
|
+
condition: service_healthy
|
|
17
|
+
healthcheck:
|
|
18
|
+
test: [ "CMD", "ak", "healthcheck" ]
|
|
19
|
+
start_period: 60s
|
|
20
|
+
interval: 30s
|
|
21
|
+
retries: 5
|
|
22
|
+
timeout: 5s
|
|
23
|
+
environment:
|
|
24
|
+
- AUTHENTIK_POSTGRESQL__HOST=authentik-postgresql
|
|
25
|
+
- AUTHENTIK_POSTGRESQL__NAME=authentik
|
|
26
|
+
- AUTHENTIK_POSTGRESQL__USER=authentik_db_user
|
|
27
|
+
- AUTHENTIK_POSTGRESQL__PASSWORD=${AUTHENTIK_POSTGRESQL__PASSWORD}
|
|
28
|
+
- AUTHENTIK_SECRET_KEY=${AUTHENTIK_SECRET_KEY}
|
|
29
|
+
- AUTHENTIK_LOG_LEVEL=info # debug, info, warning, error, trace
|
|
30
|
+
- AUTHENTIK_DISABLE_STARTUP_ANALYTICS=true
|
|
31
|
+
- AUTHENTIK_DISABLE_UPDATE_CHECK=false
|
|
32
|
+
- AUTHENTIK_ERROR_REPORTING__ENABLED=false
|
|
33
|
+
secrets:
|
|
34
|
+
- authentik_postgresql_password
|
|
35
|
+
- authentik_secret_key
|
|
36
|
+
volumes:
|
|
37
|
+
- $DOCKERDIR/appdata/authentik/media:/media
|
|
38
|
+
- $DOCKERDIR/appdata/authentik/custom-templates:/templates
|
|
39
|
+
labels:
|
|
40
|
+
- "traefik.enable=true"
|
|
41
|
+
# HTTP Routers
|
|
42
|
+
- "traefik.http.routers.authentik-rtr.entrypoints=websecure-internal,websecure-external"
|
|
43
|
+
- "traefik.http.routers.authentik-rtr.rule=Host(`authentik.$DOMAINNAME_1`)"
|
|
44
|
+
# Middlewares
|
|
45
|
+
- "traefik.http.routers.authentik-rtr.middlewares=chain-no-auth@file"
|
|
46
|
+
# Individual Application forwardAuth regex (catch any subdomain using individual application forwardAuth)
|
|
47
|
+
- "traefik.http.routers.authentik-output-rtr.rule=HostRegexp(`{subdomain:[a-z0-9-]+}.${DOMAINNAME_1}`) && PathPrefix(`/outpost.goauthentik.io/`)"
|
|
48
|
+
# HTTP Services
|
|
49
|
+
- "traefik.http.routers.authentik-rtr.service=authentik-svc"
|
|
50
|
+
- "traefik.http.services.authentik-svc.loadbalancer.server.port=9000"
|
|
51
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
http:
|
|
2
|
+
middlewares:
|
|
3
|
+
# https://github.com/goauthentik/authentik/issues/2366
|
|
4
|
+
middlewares-authentik:
|
|
5
|
+
forwardAuth:
|
|
6
|
+
address: "http://authentik:9000/outpost.goauthentik.io/auth/traefik"
|
|
7
|
+
trustForwardHeader: true
|
|
8
|
+
authResponseHeaders:
|
|
9
|
+
- X-authentik-username
|
|
10
|
+
- X-authentik-groups
|
|
11
|
+
- X-authentik-email
|
|
12
|
+
- X-authentik-name
|
|
13
|
+
- X-authentik-uid
|
|
14
|
+
- X-authentik-jwt
|
|
15
|
+
- X-authentik-meta-jwks
|
|
16
|
+
- X-authentik-meta-outpost
|
|
17
|
+
- X-authentik-meta-provider
|
|
18
|
+
- X-authentik-meta-app
|
|
19
|
+
- X-authentik-meta-version
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../manifest-schema.json",
|
|
3
|
+
"version": "1.2",
|
|
4
|
+
|
|
5
|
+
"app": {
|
|
6
|
+
"sname": "authentik",
|
|
7
|
+
"pname": "Authentik",
|
|
8
|
+
"descriptionShort": "Open-source Access/Identity Provider",
|
|
9
|
+
"icon": "sh-authentik",
|
|
10
|
+
"category": "core"
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"deployment": {
|
|
14
|
+
"type": "multicontainer",
|
|
15
|
+
"compose": "compose.yml",
|
|
16
|
+
"webui": true,
|
|
17
|
+
"port": 9000,
|
|
18
|
+
"protocol": "https"
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
"dependencies": [
|
|
22
|
+
{
|
|
23
|
+
"sname": "authentik-postgresql",
|
|
24
|
+
"pname": "Authentik PostgreSQL",
|
|
25
|
+
"compose": "authentik-postgresql.yml",
|
|
26
|
+
"installOrder": 1,
|
|
27
|
+
"waitForHealthy": true,
|
|
28
|
+
"description": "Dedicated PostgreSQL database for Authentik"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"sname": "authentik-worker",
|
|
32
|
+
"pname": "Authentik Worker",
|
|
33
|
+
"compose": "authentik-worker.yml",
|
|
34
|
+
"installOrder": 3,
|
|
35
|
+
"waitForHealthy": false,
|
|
36
|
+
"description": "Background task processor for Authentik"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
|
|
40
|
+
"requirements": {
|
|
41
|
+
"prerequisites": ["prerequisites", "socket_proxy_running", "traefik_production", "traefik_running", "hybrid_mode"],
|
|
42
|
+
"apps": ["socket-proxy", "traefik"]
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
"files": [
|
|
46
|
+
{
|
|
47
|
+
"source": "files/middlewares-authentik.yml",
|
|
48
|
+
"destination": "$DOCKER_FOLDER/appdata/traefik3/rules/$HOSTNAME/middlewares-authentik.yml",
|
|
49
|
+
"backup": false
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"source": "files/chain-authentik.yml",
|
|
53
|
+
"destination": "$DOCKER_FOLDER/appdata/traefik3/rules/$HOSTNAME/chain-authentik.yml",
|
|
54
|
+
"backup": false
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
|
|
58
|
+
"traefik": {
|
|
59
|
+
"supported": true,
|
|
60
|
+
"subdomain": "authentik",
|
|
61
|
+
"chain": "chain-no-auth",
|
|
62
|
+
"middlewares": ["middlewares-authentik.yml", "chain-authentik.yml"]
|
|
63
|
+
},
|
|
64
|
+
|
|
65
|
+
"dashboard": {
|
|
66
|
+
"enabled": true,
|
|
67
|
+
"location": "other",
|
|
68
|
+
"showStats": true,
|
|
69
|
+
"portVariable": null
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
"env": {
|
|
73
|
+
"variables": [
|
|
74
|
+
{
|
|
75
|
+
"name": "AUTHENTIK_VERSION_PIN",
|
|
76
|
+
"type": "string",
|
|
77
|
+
"default": "latest",
|
|
78
|
+
"prompt": false,
|
|
79
|
+
"required": true
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "AUTHENTIK_POSTGRESQL__PASSWORD",
|
|
83
|
+
"type": "string",
|
|
84
|
+
"default": "file:///run/secrets/authentik_postgresql_password",
|
|
85
|
+
"prompt": false,
|
|
86
|
+
"required": true
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "AUTHENTIK_SECRET_KEY",
|
|
90
|
+
"type": "string",
|
|
91
|
+
"default": "file:///run/secrets/authentik_secret_key",
|
|
92
|
+
"prompt": false,
|
|
93
|
+
"required": true
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"secrets": [
|
|
97
|
+
{
|
|
98
|
+
"name": "authentik_postgresql_password",
|
|
99
|
+
"type": "random",
|
|
100
|
+
"generateDefault": true,
|
|
101
|
+
"generateLength": 60
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "authentik_secret_key",
|
|
105
|
+
"type": "random",
|
|
106
|
+
"generateDefault": true,
|
|
107
|
+
"generateLength": 60
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
|
|
112
|
+
"status": {
|
|
113
|
+
"file": "05_authentik_status",
|
|
114
|
+
"successMessage": "Authentik Setup Completed",
|
|
115
|
+
"telemetryAction": "authentik"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
services:
|
|
2
|
+
# CrowdSec - Open-source & Collaborative IPS
|
|
3
|
+
crowdsec:
|
|
4
|
+
image: crowdsecurity/crowdsec
|
|
5
|
+
container_name: crowdsec
|
|
6
|
+
security_opt:
|
|
7
|
+
- no-new-privileges:true
|
|
8
|
+
restart: unless-stopped
|
|
9
|
+
profiles: ["core", "all"]
|
|
10
|
+
networks:
|
|
11
|
+
- default
|
|
12
|
+
ports:
|
|
13
|
+
- "$CROWDSEC_PORT:8080"
|
|
14
|
+
environment:
|
|
15
|
+
COLLECTIONS: "crowdsecurity/traefik crowdsecurity/http-cve crowdsecurity/whitelist-good-actors crowdsecurity/iptables crowdsecurity/linux crowdsecurity/sshd"
|
|
16
|
+
GID: $PGID
|
|
17
|
+
CUSTOM_HOSTNAME: $HOSTNAME
|
|
18
|
+
volumes:
|
|
19
|
+
- $DOCKERDIR/logs/$HOSTNAME:/logs/$HOSTNAME:ro
|
|
20
|
+
- /var/log:/var/log:ro
|
|
21
|
+
- $DOCKERDIR/appdata/crowdsec/data:/var/lib/crowdsec/data
|
|
22
|
+
- $DOCKERDIR/appdata/crowdsec/config:/etc/crowdsec
|
|
23
|
+
# DOCKER-LABELS-PLACEHOLDER
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
mode: iptables
|
|
2
|
+
pid_dir: /var/run/
|
|
3
|
+
update_frequency: 10s
|
|
4
|
+
daemonize: true
|
|
5
|
+
log_mode: file
|
|
6
|
+
log_dir: /var/log/
|
|
7
|
+
log_level: info
|
|
8
|
+
log_compression: true
|
|
9
|
+
log_max_size: 100
|
|
10
|
+
log_max_backups: 3
|
|
11
|
+
log_max_age: 30
|
|
12
|
+
api_url: http://localhost:CROWDSEC-PORT-PLACEHOLDER/
|
|
13
|
+
api_key: CROWDSEC-API-KEY-PLACEHOLDER
|
|
14
|
+
insecure_skip_verify: false
|
|
15
|
+
disable_ipv6: true
|
|
16
|
+
deny_action: DROP
|
|
17
|
+
deny_log: true
|
|
18
|
+
supported_decisions_types:
|
|
19
|
+
- ban
|
|
20
|
+
#to change log prefix
|
|
21
|
+
deny_log_prefix: "[CSFB_BLOCK] "
|
|
22
|
+
#to change the blacklists name
|
|
23
|
+
blacklists_ipv4: crowdsec-blacklists
|
|
24
|
+
blacklists_ipv6: crowdsec6-blacklists
|
|
25
|
+
#if present, insert rule in those chains
|
|
26
|
+
iptables_chains:
|
|
27
|
+
- INPUT
|
|
28
|
+
# - FORWARD
|
|
29
|
+
- DOCKER-USER
|
|
30
|
+
|
|
31
|
+
## nftables
|
|
32
|
+
nftables:
|
|
33
|
+
ipv4:
|
|
34
|
+
enabled: true
|
|
35
|
+
set-only: false
|
|
36
|
+
table: crowdsec
|
|
37
|
+
chain: crowdsec-chain
|
|
38
|
+
ipv6:
|
|
39
|
+
enabled: true
|
|
40
|
+
set-only: false
|
|
41
|
+
table: crowdsec6
|
|
42
|
+
chain: crowdsec6-chain
|
|
43
|
+
# packet filter
|
|
44
|
+
pf:
|
|
45
|
+
# an empty string disables the anchor
|
|
46
|
+
anchor_name: ""
|