Initial commit: Docmost compose setup

This commit is contained in:
feldjaeger 2026-04-12 20:39:16 +02:00
commit 4e44eed459
2 changed files with 23 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
data/
.env
*.log

20
compose.yaml Normal file
View file

@ -0,0 +1,20 @@
services:
docmost:
image: docmost/docmost:latest
container_name: docmost
restart: unless-stopped
ports:
- "3000:3000"
environment:
- APP_URL=http://10.5.1.121:3000
- SECRET_KEY=CHANGE_ME_LATER
- DB_TYPE=sqlite
- DB_PATH=/app/data/docmost.db
volumes:
- ./data:/app/data
networks:
- docmost-net
networks:
docmost-net:
driver: bridge