dockerfile and docker-compose file

This commit is contained in:
Philipinho
2024-06-07 17:21:19 +01:00
parent 2afbede8ce
commit eef9081aaf
2 changed files with 76 additions and 0 deletions

36
docker-compose.yml Normal file
View File

@ -0,0 +1,36 @@
version: '3'
services:
docmost:
image: docker.io/library/docmost:latest
depends_on:
- db
- redis
environment:
APP_URL: 'http://localhost:3000'
APP_SECRET: 'REPLACE_WITH_LONG_SECRET'
DATABASE_URL: 'postgresql://postgres:password@db:5432/docmost?schema=public'
REDIS_URL: 'redis://redis:6379'
ports:
- "3000:3000"
restart: unless-stopped
db:
image: postgres:16-alpine
environment:
POSTGRES_DB: docmost
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 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:
db_data:
redis_data: