A simple, all-in-one Docker image for Seanime.
Video transcoding via FFmpeg works out of the box. qBittorrent is installed and configured.
docker run -it -p 3000:8080 -p 3001:8081 --restart=always --name seanime coyann/seanime
services:
seanime:
image: coyann/seanime
container_name: seanime
ports:
- "3000:8080" # Seanime web interface
- "3001:8081" # qBittorrent web interface
volumes:
- ./data:/data # Bind mount for downloads and media files
# IMPORTANT: Copy the .docker/config directory from the repo to your host before using this bind mount.
# - ./config:/config # Bind mount for configuration files
restart: always
8080
- Seanime web interface.
8081
- qBittorrent web interface.
/data
- Downloads and media files are stored here.
/config
- This is where the configuration files for Seanime, qBittorrent, and Supervisor are located.