fix: templates
This commit is contained in:
parent
a3877a2cb1
commit
244c81587c
@ -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
|
||||
@ -32,4 +33,4 @@ services:
|
||||
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
||||
interval: 5s
|
||||
timeout: 20s
|
||||
retries: 10
|
||||
retries: 10
|
||||
|
@ -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
|
||||
retries: 10
|
||||
|
@ -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,10 +85,8 @@ 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
|
||||
timeout: 20s
|
||||
retries: 10
|
||||
retries: 10
|
||||
|
@ -2,16 +2,19 @@
|
||||
# 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
|
||||
timeout: 20s
|
||||
retries: 10
|
||||
retries: 10
|
||||
|
@ -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
Loading…
Reference in New Issue
Block a user