MirrorNest
← All guides

Komga

A media server built specifically for comics, manga, and digital book collections, with a clean reading interface and OPDS support for e-readers.

Target: Any Docker hostMediaReadingOfficial homepage ↗Official docs ↗
This guide is synthesized from Komga's own official documentation, linked above — always cross-check exact package/version names there before running these commands on a production server, since distro and project versions move over time.
  1. 1Create a docker-compose.yml

    version: '3.3' services: komga: image: gotson/komga container_name: komga volumes: - type: bind source: /path/to/config target: /config - type: bind source: /path/to/data target: /data ports: - 25600:25600 user: "1000:1000" environment: - TZ=Europe/London restart: unless-stopped

    Always use a local filesystem for /config — never a network share like CIFS or NFS.

  2. 2Start Komga

    docker compose up -d
  3. 3Access the web interface

    open http://localhost:25600