Skip to content

sidenico/seanime-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Multi-Platform Seanime Docker

Same as Coyenn/seanime-docker but with multi-platform support (arm64).

A simple, all-in-one Docker image for Seanime.

Video transcoding via FFmpeg works out of the box. qBittorrent is installed and configured.

Usage

Docker CLI

docker run -it -p 3000:8080 -p 3001:8081 --restart=always --name seanime ncrqnt/seanime

Docker Compose

services:
  seanime:
    image: ncrqnt/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

Configuration

Ports

8080 - Seanime web interface.

8081 - qBittorrent web interface.

Volumes

/data - Downloads and media files are stored here.

/config - This is where the configuration files for Seanime, qBittorrent, and Supervisor are located.

About

Multi-platform Seanime container

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Dockerfile 83.5%
  • Shell 16.5%