Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

oae/kaizoku

Folders and files

NameName
Last commit message
Last commit date

Latest commit

fc86b7d · Feb 3, 2025
Mar 3, 2023
Oct 26, 2022
Jan 26, 2023
May 6, 2023
Nov 24, 2022
May 6, 2023
Oct 27, 2022
Oct 2, 2022
Nov 4, 2022
Nov 4, 2022
Oct 14, 2022
Oct 2, 2022
Feb 7, 2023
Feb 7, 2023
Nov 1, 2022
Nov 16, 2022
Oct 22, 2022
Feb 3, 2025
Nov 4, 2022
Oct 27, 2022
May 6, 2023
Feb 5, 2023
Oct 6, 2022
Oct 22, 2022
Oct 6, 2022
Oct 10, 2022
Oct 3, 2022

Repository files navigation


⚠️ Kaizoku is now archived and will not be maintained anymore ⚠️


Kaizoku Kaizoku

Kaizoku is self-hosted manga downloader.

Home Page

Detail Page Search
Detail Page Search

Deployment

You can deploy Kaizoku with following docker-compose file

version: '3'

volumes:
  db:
  redis:

services:
  app:
    container_name: kaizoku
    image: ghcr.io/oae/kaizoku:latest
    environment:
      - DATABASE_URL=postgresql://kaizoku:kaizoku@db:5432/kaizoku
      - KAIZOKU_PORT=3000
      - REDIS_HOST=redis
      - REDIS_PORT=6379
      - PUID=<host user puid>
      - PGID=<host user guid>
      - TZ=Europe/Istanbul
    volumes:
      - <path_to_library>:/data
      - <path_to_config>:/config
      - <path_to_logs>:/logs
    depends_on:
      db:
        condition: service_healthy
    ports:
      - '3000:3000'
  redis:
    image: redis:7-alpine
    volumes:
      - redis:/data
  db:
    image: postgres:alpine
    restart: unless-stopped
    healthcheck:
      test: ['CMD-SHELL', 'pg_isready -U kaizoku']
      interval: 5s
      timeout: 5s
      retries: 5
    environment:
      - POSTGRES_USER=kaizoku
      - POSTGRES_DB=kaizoku
      - POSTGRES_PASSWORD=kaizoku
    volumes:
      - db:/var/lib/postgresql/data

Development

Requirements

Start the Kaizoku

git clone https://github.com/oae/kaizoku.git
cd ./kaizoku/
cp .env.example .env
pnpm i
docker compose up -d redis db
pnpm prisma migrate deploy
pnpm dev

Open http://localhost:3000 with your browser to see the page.

Credits

Kaizoku uses amazing mangal by @metafates as it's downloader.