← すべてのガイド
Komga
A media server built specifically for comics, manga, and digital book collections, with a clean reading interface and OPDS support for e-readers.
このガイドは上記リンク先にあるKomga公式ドキュメントをもとに作成されています。ディストリビューションやプロジェクトのバージョンは時間とともに変わるため、本番サーバーでこれらのコマンドを実行する前に、必ず公式ドキュメントで正確なパッケージ名・バージョン名を確認してください。
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