Title logo
linuxserver/codimd.

3,213,391 33 arm64 amd64 arm Deprecated

Build Information

General build information for this image

Docker Hub linuxserver/codimd
Build Time 24 Dec 2020 01:27:14
Category Productivity
Synchronised Yes
Stable Yes
Deprecated Yes

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest version-1.7.0 24 Dec 2020 at 01:27:13

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  codimd:
    image: linuxserver/codimd:version-1.7.0
    container_name: codimd
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use EG Europe/London.
      - PUID=1000 # for UserID
      - PGID=1000 # for GroupID
      - DB_USER=codimd # Database user
      - DB_PORT=3306 # Port to access mysql database default is 3306
      - DB_PASS= # Database password
      - DB_NAME=codimd # Database name
      - DB_HOST= # Host address of mysql database
    volumes:
      - /host/path/to/config:/config # CodiMD config and configurable files
    ports:
      - 3000:3000/tcp # If you wish to access this container from http://{IP}:${PORT}` this must be left unchanged.

CLI

docker create \
  --name=codimd \
  -e TZ=Europe/London `# Specify a timezone to use EG Europe/London.` \
  -e PUID=1000 `# for UserID` \
  -e PGID=1000 `# for GroupID` \
  -e DB_USER=codimd `# Database user` \
  -e DB_PORT=3306 `# Port to access mysql database default is 3306` \
  -e DB_PASS= `# Database password` \
  -e DB_NAME=codimd `# Database name` \
  -e DB_HOST= `# Host address of mysql database` \
  -v /host/path/to/config:/config `# CodiMD config and configurable files` \
  -p 3000:3000/tcp `# If you wish to access this container from http://{IP}:${PORT}` this must be left unchanged.` \
  --restart unless-stopped \
  linuxserver/codimd:version-1.7.0