← Tüm kılavuzlar
Komga
A media server built specifically for comics, manga, and digital book collections, with a clean reading interface and OPDS support for e-readers.
Bu kılavuz, yukarıda bağlantısı verilen Komga kendi resmi belgelerinden derlenmiştir — dağıtım ve proje sürümleri zamanla değiştiğinden, bu komutları bir üretim sunucusunda çalıştırmadan önce tam paket/sürüm adlarını her zaman orada kontrol edin.
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-stoppedAlways use a local filesystem for /config — never a network share like CIFS or NFS.
2Start Komga
docker compose up -d3Access the web interface
open http://localhost:25600