removed docmost

This commit is contained in:
Peter Wood
2025-11-30 16:06:48 -08:00
parent 255b977aad
commit 75d48204ba
2 changed files with 0 additions and 42 deletions

View File

@@ -1,7 +0,0 @@
# openssl rand -base64 18
POSTGRES_PASSWORD=
POSTGRES_URL=postgresql://docmost:password@db:5432/docmost?schema=public
# Application Configuration
# openssl rand -base64 33
APP_SECRET=

View File

@@ -1,35 +0,0 @@
services:
docmost:
image: docmost/docmost:latest
depends_on:
- db
- redis
environment:
APP_URL: http://localhost:3000
APP_SECRET: ${APP_SECRET}
DATABASE_URL: ${POSTGRES_URL}
REDIS_URL: redis://redis:6379
ports:
- 9380:3000
restart: unless-stopped
volumes:
- docmost:/app/data/storage
db:
image: postgres:16-alpine
environment:
POSTGRES_DB: docmost
POSTGRES_USER: docmost
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
restart: unless-stopped
volumes:
- db_data:/var/lib/postgresql/data
redis:
image: redis:7.2-alpine
restart: unless-stopped
volumes:
- redis_data:/data
volumes:
docmost: null
db_data: null
redis_data: null
networks: {}