The easiest way to spin up CodiMD with docker is using docker-compose, see below docker-compose for example config.
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:
image: nabo.codimd.dev/hackmdio/hackmd:2.5.4
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: {}
docker-compose.yml
docker-compose up -d
http://localhost:3000
in your browserdocker compose pull
to pull the newer imagesdocker compose up -d
To upload images to local volume, it's important to setup proper permission for volume or the server won't able to write into it.
Please allow user named hackmd
in the docker to access the volume, which user id and group id are uid=1500, gid=1500
.
You can change the volume permission though this command: chown -R 1500:1500 volume_dir
.
From version 2.4.2, we support both amd64 and arm64 architecture by leveraging Docker multi-arch image.
You can use nabo.codimd.dev/hackmdio/hackmd:2.5.3
image in x86_64 or arm64 server. Docker will pull the corresponding image with your CPU architechure.
hackmdio/hackmd:1.4.1
/home/hackmd/app/public/uploads
CodiMD
Docs