Title logo
linuxserver/hedgedoc.

393,276 29 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/hedgedoc
Build Time 01 May 2024 19:33:31
Base Image lsiobase/ubuntu:bionic
Category Documentation
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 1.9.9 01 May 2024 at 19:33:30

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  hedgedoc:
    image: linuxserver/hedgedoc:1.9.9
    container_name: hedgedoc
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use
      - PUID=1000 # User ID to run as
      - PGID=1000 # Group ID to run as
      - DB_USER=hedgedoc # Database username
      - DB_PORT=3306 # Database server port
      - DB_PASS= # Database password
      - DB_NAME=hedgedoc # Database name
      - DB_HOST=mariadb # Database server hostname
    volumes:
      - /host/path/to/config:/config # Contains all relevant configuration files.
    ports:
      - 3000:3000/tcp # Web UI

CLI

docker create \
  --name=hedgedoc \
  -e TZ=Europe/London `# Specify a timezone to use` \
  -e PUID=1000 `# User ID to run as` \
  -e PGID=1000 `# Group ID to run as` \
  -e DB_USER=hedgedoc `# Database username` \
  -e DB_PORT=3306 `# Database server port` \
  -e DB_PASS= `# Database password` \
  -e DB_NAME=hedgedoc `# Database name` \
  -e DB_HOST=mariadb `# Database server hostname` \
  -v /host/path/to/config:/config `# Contains all relevant configuration files.` \
  -p 3000:3000/tcp `# Web UI` \
  --restart unless-stopped \
  linuxserver/hedgedoc:1.9.9