mirror of
https://github.com/acedanger/docker.git
synced 2025-12-06 02:10:12 -08:00
removed docmost
This commit is contained in:
@@ -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=
|
|
||||||
@@ -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: {}
|
|
||||||
Reference in New Issue
Block a user