|
Kaizoku.NET — a community-maintained build of maxpiva/Kaizoku.NET. Tracks upstream and lands fixes and features ahead of upstream cadence. What does it do? Subscribe to a series and Kaizoku.NET automatically downloads it. When the series is updated on any of your configured providers, new chapters are downloaded automatically — drop and forget. |
Lineage: OAE (original frontend) → maxpiva (.NET port + Mihon bridge) → this community-maintained build.
Kaizoku.NET is a series manager focused on simplicity, speed, and reliability. It uses Mihon extensions to connect with multiple sources.
- 🧙♂️ Startup Wizard — Automatically imports your existing library.
- 🔁 Temporary vs Permanent Sources
- Chapters download from temporary sources only when no permanent source provides them.
- Auto-deleted if a permanent source later provides them.
- 🔎 Multi-Search & Multi-Linking — Link a single series to multiple sources.
- 📥 Automatic Downloads, Retries, and Rescheduling
- 🔄 Auto-Updates — Extensions stay current.
- 🧹 Filename Normalization — Consistent naming for easy reimport.
- 🧾 ComicInfo.xml Injection — Chapters include rich metadata from the original source.
- 🖼️ Extras
cover.jpgper serieskaizoku.jsonfor full metadata mapping- And more.
- Frontend: Next.js UI originally derived from Kaizoku Next by OAE, with significant redesign in this build.
- Backend: .NET engine that manages schedules, downloads, and metadata, with a Mihon Bridge for running Mihon Android extensions on .NET.
Mihon extensions are distributed as Android APKs and require an Android runtime. To bridge that gap:
- The Java/Android compatibility layer originally created by the Suwayomi team is adapted (KCEF replaced with JCEF Maven) into a Java 8 Android compat layer with required dependencies included.
- IKVM runs that compatibility layer on .NET.
Images are published to GitHub Container Registry for both amd64 and arm64:
ghcr.io/quickkill0/kaizoku.net:main
| Container Path | Description |
|---|---|
/config |
Application configuration |
/series |
Downloaded series |
| Port | Service | Required | Notes |
|---|---|---|---|
| 9833 | Kaizoku.NET UI | ✅ | Web interface |
| Variable | Default | Description |
|---|---|---|
UID |
99 | Host user ID |
PGID |
100 | Host group ID |
UMASK |
022 | File permission mask |
Ensure the specified UID and PGID have write access to your mounted /config and /series directories.
Host networking is recommended for optimal performance under heavy parallel downloading and provider querying.
docker run -d \
--name kaizoku-net \
--network host \
-p 9833:9833 \
-e UID=99 \
-e PGID=100 \
-e UMASK=022 \
-v /path/to/your/config:/config \
-v /path/to/your/series:/series \
ghcr.io/quickkill0/kaizoku.net:mainReplace /path/to/your/config and /path/to/your/series with real paths on your host.
services:
kaizoku-net:
container_name: kaizoku-net
image: 'ghcr.io/quickkill0/kaizoku.net:main'
volumes:
- '/path/to/your/series:/series'
- '/path/to/your/config:/config'
environment:
- UMASK=022
- PGID=100
- UID=99
ports:
- '9833:9833'<Container>
<Name>Kaizoku.NET</Name>
<Repository>ghcr.io/quickkill0/kaizoku.net:main</Repository>
<Registry>https://github.com/Quickkill0/Kaizoku.NET/pkgs/container/kaizoku.net</Registry>
<Network>host</Network>
<MyID>kaizoku-net</MyID>
<Shell>sh</Shell>
<Privileged>false</Privileged>
<Support>https://github.com/Quickkill0/Kaizoku.NET/issues</Support>
<Project>https://github.com/Quickkill0/Kaizoku.NET</Project>
<Overview>Community-maintained build of Kaizoku.NET — a feature-complete series manager powered by Mihon extensions.</Overview>
<Category>MediaManager:Comics</Category>
<Config Name="Config Folder" Target="/config" Default="/mnt/user/appdata/kaizoku-net" Mode="rw" Description="Path to store configuration, database, and settings." Type="Path" />
<Config Name="Series Folder" Target="/series" Default="/mnt/user/media/series" Mode="rw" Description="Path where series and chapters will be downloaded." Type="Path" />
<Config Name="UID" Target="UID" Default="99" Mode="rw" Description="User ID to run the container as." Type="Variable" />
<Config Name="PGID" Target="PGID" Default="100" Mode="rw" Description="Group ID to run the container as." Type="Variable" />
<Config Name="UMASK" Target="UMASK" Default="022" Mode="rw" Description="UMASK for file permissions." Type="Variable" />
<WebUI>http://[IP]:9833</WebUI>
<TemplateURL>https://raw.githubusercontent.com/Quickkill0/Kaizoku.NET/main/unraid/kaizoku-net.xml</TemplateURL>
<Icon>https://raw.githubusercontent.com/Quickkill0/Kaizoku.NET/main/KaizokuFrontend/public/kaizoku.net.png</Icon>
</Container>A tray application based on Avalonia is available in the Releases. Currently tested on Windows. Linux and macOS testing is welcome.
Build instructions are in progress. Until they land, see the workflows in .github/workflows/ for the canonical build steps used by CI.
Kaizoku.NET can be memory-intensive when managing large libraries or running many parallel searches and downloads. Plan resources accordingly.
If you encounter problems, check the logs folder. Logs there can be reviewed or attached when reporting an issue.
PRs are welcome. For larger changes, open an issue first to discuss scope.
