Quick Start
We recommend deploying AutoBangumi in Docker. Before deployment, make sure you have Docker Engine or Docker Desktop installed.
Create Data and Configuration Directories
To ensure AB's data and configuration persist across updates, we recommend using bind mounts or Docker volumes.
# Using bind mount
mkdir -p ${HOME}/AutoBangumi/{config,data}
cd ${HOME}/AutoBangumiChoose either bind mount or Docker volume:
# Using Docker volume
docker volume create AutoBangumi_config
docker volume create AutoBangumi_dataDeploy AutoBangumi with Docker
Make sure you are in the AutoBangumi directory when running these commands.
Option 1: Deploy with Docker CLI
Copy and run the following command:
docker run -d \
--name=AutoBangumi \
-v ${HOME}/AutoBangumi/config:/app/config \
-v ${HOME}/AutoBangumi/data:/app/data \
-p 7892:7892 \
-e TZ=Asia/Shanghai \
-e PUID=$(id -u) \
-e PGID=$(id -g) \
-e UMASK=022 \
--network=bridge \
--dns=8.8.8.8 \
--restart unless-stopped \
ghcr.io/estrellaxd/auto_bangumi:latestOption 2: Deploy with Docker Compose
Copy the following content into a docker-compose.yml file:
version: "3.8"
services:
AutoBangumi:
image: "ghcr.io/estrellaxd/auto_bangumi:latest"
container_name: AutoBangumi
volumes:
- ./config:/app/config
- ./data:/app/data
ports:
- "7892:7892"
network_mode: bridge
restart: unless-stopped
dns:
- 8.8.8.8
environment:
- TZ=Asia/Shanghai
- PGID=$(id -g)
- PUID=$(id -u)
- UMASK=022Run the following command to start the container:
docker compose up -dInstall qBittorrent
If you haven't installed qBittorrent, please install it first:
Get an Aggregated RSS Link (Using Mikan Project as an Example)
Visit Mikan Project, register an account and log in, then click the RSS button in the bottom right corner and copy the link.

The RSS URL will look like:
https://mikanani.me/RSS/MyBangumi?token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# or
https://mikanime.tv/RSS/MyBangumi?token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxFor detailed steps, see Mikan RSS Setup.
Configure AutoBangumi
After installing AB, the WebUI will start automatically, but the main program will be paused. You can access http://abhost:7892 to configure it.
- Open the webpage. The default username is
adminand the default password isadminadmin. Change these immediately after first login. - Enter your downloader's address, port, username, and password.

Click Apply to save the configuration. AB will restart, and when the dot in the upper right corner turns green, it indicates AB is running normally.
Click the + button in the upper right corner, check Aggregated RSS, select the parser type, and enter your Mikan RSS URL.

Wait for AB to parse the aggregated RSS. Once parsing is complete, it will automatically add anime and manage downloads.