kaizoku
v1.6.1
KaizokuKaizoku ist selbst gehosteter Manga-Downloader.
| Detailseite | Suchen |
|---|---|
Sie können Kaizoku mit der folgenden Docker-Compose-Datei bereitstellen
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 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Öffnen Sie http: // localhost: 3000 mit Ihrem Browser, um die Seite zu sehen.
Kaizoku verwendet erstaunliche Mangal von @Metafates als Downloader.