commit 6c800c44bc0fe16be4cceda8c7aa4ef093802c12 Author: hyungi Date: Wed Feb 25 15:10:31 2026 +0900 Initial commit: Komga docker-compose configuration Co-Authored-By: Claude Opus 4.6 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7ea35b0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +config/ +.DS_Store diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d84fbbb --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +version: '3.3' +services: + komga: + image: gotson/komga + container_name: komga + ports: + - "25600:25600" + volumes: + - ./config:/config + - /Volumes/Comic:/data/comics + environment: + - TZ=Asia/Seoul + - SERVER_PORT=25600 + restart: unless-stopped + user: "501:20"