add files

This commit is contained in:
2025-03-15 20:08:48 +08:00
parent 00da211880
commit f4f28ca3f4
7 changed files with 258 additions and 0 deletions

22
komga/docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
version: "3.8"
services:
komga:
image: gotson/komga:latest
container_name: komga
restart: unless-stopped
networks:
- devops
ports:
- "25600:25600" # 访问地址: http://localhost:25600
environment:
- TZ=Asia/Shanghai # 设置时区
volumes:
# mkdir -p ~/dockers/komga/{config,books,logs}
- ~/dockers/komga/config:/config # 存储 Komga 配置和数据库
- ~/dockers/komga/books:/books # 你的电子书存储目录EPUB, PDF
- ~/dockers/komga/logs:/logs # Komga 日志
networks:
devops:
external: true