Skip to content

Doku Monitoring Dashboard

Dan Davies edited this page Oct 1, 2025 · 2 revisions

Doku Monitoring Dashboard

Doku is running at http://aichemy-nmr.ch.ic.ac.uk:9090/. It can be used to monitor disk usage of Docker volumes and bind mounts.

image image

The docker-compose.yaml file is on the server at /doku-dashboard/.

Example docker-compose.yaml:

version: '3.8'

services:
  doku:
    image: amerkurev/doku
    container_name: doku
    restart: unless-stopped
    ports:
      - "9090:9090"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock:ro
      - /:/hostroot:ro
Clone this wiki locally