Initial commit: Docmost compose setup
This commit is contained in:
commit
4e44eed459
2 changed files with 23 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
data/
|
||||||
|
.env
|
||||||
|
*.log
|
||||||
20
compose.yaml
Normal file
20
compose.yaml
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue