Merge pull request #2747 from alfinauzikri/main

[TEMPLATE] Add Docmost Template
This commit is contained in:
Andras Bacsai 2024-07-15 12:54:36 +02:00 committed by GitHub
commit 793e6d19eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 63 additions and 0 deletions

BIN
public/svgs/docmost.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,63 @@
# documentation: https://docmost.com/docs/
# slogan: Open-source collaborative wiki and documentation software
# tags: documentation, opensource, wiki, confluence, knowledge-base, notion, realtime-collaboration, notion-alternative
# logo: svgs/docmost.png
# port: 3000
services:
docmost:
image: 'docmost/docmost:latest'
depends_on:
- db
- redis
environment:
- SERVICE_FQDN_DOCMOST_3000
- APP_SECRET=$SERVICE_BASE64_APPKEY
- APP_URL=$SERVICE_FQDN_DOCMOST_3000
- 'DATABASE_URL=postgresql://$SERVICE_USER_POSTGRES:$SERVICE_PASSWORD_POSTGRES@db/docmost?schema=public'
- 'REDIS_URL=redis://redis:6379'
restart: unless-stopped
volumes:
- 'docmost:/app/data/storage'
healthcheck:
test:
- CMD
- curl
- '-f'
- 'http://127.0.0.1:3000'
interval: 2s
timeout: 10s
retries: 30
db:
image: 'postgres:16-alpine'
environment:
- POSTGRES_USER=$SERVICE_USER_POSTGRES
- POSTGRES_PASSWORD=$SERVICE_PASSWORD_POSTGRES
- POSTGRES_DB=docmost
restart: unless-stopped
volumes:
- 'db_data:/var/lib/postgresql/data'
healthcheck:
test:
- CMD-SHELL
- 'pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}'
interval: 5s
timeout: 20s
retries: 10
redis:
image: 'redis:7.2-alpine'
restart: unless-stopped
volumes:
- 'redis_data:/data'
healthcheck:
test:
- CMD
- redis-cli
- PING
interval: 30s
timeout: 10s
retries: 5
volumes:
docmost: null
db_data: null
redis_data: null