mirror of https://github.com/status-im/codimd.git
34 lines
928 B
YAML
34 lines
928 B
YAML
version: "3"
|
|
services:
|
|
database:
|
|
image: postgres:11.6-alpine
|
|
environment:
|
|
- POSTGRES_USER=codimd
|
|
- POSTGRES_PASSWORD=change_password
|
|
- POSTGRES_DB=codimd
|
|
volumes:
|
|
- "database-data:/var/lib/postgresql/data"
|
|
restart: always
|
|
codimd:
|
|
# you can use image or custom build below,
|
|
# if you need CJK character with exported PDF files,
|
|
# please change the image tag with `cjk` postfix version
|
|
image: nabo.codimd.dev/hackmdio/hackmd:2.1.0
|
|
# image: nabo.codimd.dev/hackmdio/hackmd:2.1.0-cjk
|
|
# build:
|
|
# context: ..
|
|
# dockerfile: ./deployments/Dockerfile
|
|
environment:
|
|
- CMD_DB_URL=postgres://codimd:change_password@database/codimd
|
|
- CMD_USECDN=false
|
|
depends_on:
|
|
- database
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- upload-data:/home/hackmd/app/public/uploads
|
|
restart: always
|
|
volumes:
|
|
database-data: {}
|
|
upload-data: {}
|