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

View File

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

View File

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

View File

@@ -285,7 +285,7 @@ services:
"CMD", "CMD",
"node", "node",
"-e", "-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 timeout: 5s
interval: 5s interval: 5s
@@ -911,6 +911,7 @@ services:
- PGRST_APP_SETTINGS_JWT_SECRET=${SERVICE_PASSWORD_JWT} - PGRST_APP_SETTINGS_JWT_SECRET=${SERVICE_PASSWORD_JWT}
- PGRST_APP_SETTINGS_JWT_EXP=${JWT_EXPIRY:-3600} - PGRST_APP_SETTINGS_JWT_EXP=${JWT_EXPIRY:-3600}
command: "postgrest" command: "postgrest"
exclude_from_hc: true
supabase-auth: supabase-auth:
image: supabase/gotrue:v2.149.0 image: supabase/gotrue:v2.149.0
depends_on: depends_on:
@@ -1162,6 +1163,11 @@ services:
depends_on: depends_on:
supabase-analytics: supabase-analytics:
condition: service_healthy condition: service_healthy
healthcheck:
test: ["CMD", "echo", "Edge Functions is healthy"]
timeout: 5s
interval: 5s
retries: 3
environment: environment:
- JWT_SECRET=${SERVICE_PASSWORD_JWT} - JWT_SECRET=${SERVICE_PASSWORD_JWT}
- SUPABASE_URL=http://supabase-kong:8000 - SUPABASE_URL=http://supabase-kong:8000

File diff suppressed because one or more lines are too long