Merge remote-tracking branch 'upstream/next' into next
This commit is contained in:
@@ -9,7 +9,7 @@ services:
|
||||
image: docker.io/library/postgres:12-alpine
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -d authentik -U $${SERVICE_USER_POSTGRESQL}"]
|
||||
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
|
||||
interval: 2s
|
||||
timeout: 10s
|
||||
retries: 15
|
||||
@@ -55,8 +55,10 @@ services:
|
||||
- ./media:/media
|
||||
- ./custom-templates:/templates
|
||||
depends_on:
|
||||
- postgresql
|
||||
- redis
|
||||
postgresql:
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition: service_healthy
|
||||
authentik-worker:
|
||||
image: ghcr.io/goauthentik/server:${AUTHENTIK_TAG:-2024.2.2}
|
||||
restart: unless-stopped
|
||||
@@ -90,5 +92,7 @@ services:
|
||||
- ./certs:/certs
|
||||
- ./custom-templates:/templates
|
||||
depends_on:
|
||||
- postgresql
|
||||
- redis
|
||||
postgresql:
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition: service_healthy
|
||||
|
||||
23
templates/compose/statusnook.yaml
Normal file
23
templates/compose/statusnook.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
# documentation: https://statusnook.com
|
||||
# slogan: Effortlessly deploy a status page and start monitoring endpoints in minutes
|
||||
# tags: go,html,monitoring,sqlite,self,hosted,status,page,htmx,smtp,slack
|
||||
# logo: svgs/statusnook.svg
|
||||
# port: 8000
|
||||
|
||||
services:
|
||||
statusnook:
|
||||
environment:
|
||||
- SERVICE_FQDN_STATUSNOOK_8000
|
||||
volumes:
|
||||
- "statusnook-data:/app/statusnook-data"
|
||||
image: goksan/statusnook
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD
|
||||
- wget
|
||||
- "-q"
|
||||
- "--spider"
|
||||
- "http://127.0.0.1:8000"
|
||||
interval: 2s
|
||||
timeout: 10s
|
||||
retries: 15
|
||||
@@ -1012,7 +1012,7 @@ services:
|
||||
"-o",
|
||||
"/dev/null",
|
||||
"-H",
|
||||
"Authorization: Bearer ${ANON_KEY}",
|
||||
"Authorization: Bearer ${SERVICE_SUPABASEANON_KEY}",
|
||||
"http://127.0.0.1:4000/api/tenants/realtime-dev/health"
|
||||
]
|
||||
timeout: 5s
|
||||
|
||||
Reference in New Issue
Block a user