fix: templates

This commit is contained in:
Andras Bacsai 2024-05-23 11:13:06 +02:00
parent a3877a2cb1
commit 244c81587c
6 changed files with 27 additions and 16 deletions

View File

@ -2,12 +2,13 @@
# slogan: Document Signing for Everyone free forever for individuals, extensible for businesses and developers. Open Source Alternative to DocuSign, PandaDoc and more.
# tags: documentation
# logo: svgs/docuseal.png
# port: 3000
services:
docuseal:
image: docuseal/docuseal:latest
environment:
- SERVICE_FQDN_DOCUSEAL
- SERVICE_FQDN_DOCUSEAL_3000
- HOST=${SERVICE_FQDN_DOCUSEAL}
- DATABASE_URL=postgresql://$SERVICE_USER_POSTGRES:$SERVICE_PASSWORD_POSTGRES@postgresql:5432/${POSTGRES_DB}
volumes:
@ -16,7 +17,7 @@ services:
postgresql:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:3000"]
interval: 5s
timeout: 20s
retries: 10

View File

@ -2,17 +2,18 @@
# slogan: Document Signing for Everyone free forever for individuals, extensible for businesses and developers. Open Source Alternative to DocuSign, PandaDoc and more.
# tags: documentation
# logo: svgs/docuseal.png
# port: 3000
services:
docuseal:
image: docuseal/docuseal:latest
environment:
- SERVICE_FQDN_DOCUSEAL
- SERVICE_FQDN_DOCUSEAL_3000
- HOST=${SERVICE_FQDN_DOCUSEAL}
volumes:
- docuseal-data:/data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:3000"]
interval: 5s
timeout: 20s
retries: 10

View File

@ -2,12 +2,13 @@
# slogan: A self-hosted dashboard that puts all your feeds in one place.
# tags: dashboard, server, applications, interface, rrss
# logo: svgs/glance.png
# port: 8080
services:
glance:
image: glanceapp/glance:latest
environment:
- SERVICE_FQDN_GLANCE
- SERVICE_FQDN_GLANCE_8080
volumes:
- type: bind
source: ./glance-settings
@ -40,6 +41,7 @@ services:
- type: twitch-channels
channels:
- theprimeagen
- heyandras
- cohhcarnage
- christitustech
- blurbs
@ -83,8 +85,6 @@ services:
- symbol: RDDT
name: Reddit
- glance-assets:/user/assets
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
healthcheck:
test: ["CMD", "echo", "[+] Should be working fine."]
interval: 5s

View File

@ -2,14 +2,17 @@
# slogan: MediaWiki is a collaboration and documentation platform brought to you by a vibrant community.
# tags: wiki, collaboration, documentation
# logo: svgs/mediawiki.ico
# port: 80
services:
mediawiki:
image: mediawiki/mediawiki:latest
image: mediawiki:latest
environment:
- SERVICE_FQDN_MEDIAWIKI
- SERVICE_FQDN_MEDIAWIKI_80
volumes:
- mediawiki-images:/var/www/html/images
- mediawiki-sqlite:/var/www/html/data
- ./LocalSettings.php:/var/www/html/LocalSettings.php
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80"]
interval: 5s

View File

@ -285,7 +285,7 @@ services:
"CMD",
"node",
"-e",
"require('http').get('http://127.0.0.1:3000/api/profile', (r) => {if (r.statusCode !== 200) throw new Error(r.statusCode)})",
"require('http').get('http://127.0.0.1:3000/api/profile', (r) => {if (r.statusCode !== 200) process.exit(1); else process.exit(0); }).on('error', () => process.exit(1))",
]
timeout: 5s
interval: 5s
@ -911,6 +911,7 @@ services:
- PGRST_APP_SETTINGS_JWT_SECRET=${SERVICE_PASSWORD_JWT}
- PGRST_APP_SETTINGS_JWT_EXP=${JWT_EXPIRY:-3600}
command: "postgrest"
exclude_from_hc: true
supabase-auth:
image: supabase/gotrue:v2.149.0
depends_on:
@ -1162,6 +1163,11 @@ services:
depends_on:
supabase-analytics:
condition: service_healthy
healthcheck:
test: ["CMD", "echo", "Edge Functions is healthy"]
timeout: 5s
interval: 5s
retries: 3
environment:
- JWT_SECRET=${SERVICE_PASSWORD_JWT}
- SUPABASE_URL=http://supabase-kong:8000

File diff suppressed because one or more lines are too long