Selfhosting Komga

YouTube Video Tutorial

If you prefer a visual walkthrough, you can watch our step-by-step video guide here:

Komga is a free and open-source media server for your comics, mangas, BDs, and eBooks.

Docker Compose Setup

version: "3"
services:
  komga:
    image: gotson/komga:latest
    container_name: komga
    ports:
      - "8080:8080"
    volumes:
      - ./config:/config
      - /path/to/your/comics:/data
    environment:
      - TZ=UTC
    restart: unless-stopped