Jarvay / Motrix-Web

Web version of Motrix.

Home Page:https://motrix.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Motrix-Web

Downloads

English | 简体中文

Web version of Motrix

Motrix App Icon

Usage

docker-compose.yml

version: '3'
services:
  aria2-pro:
    container_name: aria2_pro
    image: p3terx/aria2-pro
    restart: always
    ports:
      - "6800:6800"
      - "6888:6888"
      - "6888:6888/udp"
    environment:
      - LISTEN_PORT=6888
      - RPC_PORT=6800
      - RPC_SECRET=123456
      - TZ=Asia/Shanghai
      - PUID=0
      - PGID=0
      - UMASK_SET=022
    volumes:
      - /mnt:/downloads
      - ./config:/config
  motrix-web:
    container_name: motrix-web
    image: jarvay/motrix-web
    restart: always
    environment:
      - WEB_UI_PORT=5000
    ports:
      - "5000:5000"
    volumes:
      - ./motrix-config:/app/config
      # You need to mount the same directory as aria2[-pro], otherwise the function of deleting files will not work
      - /mnt:/downloads
docker-compose up -d

About

Web version of Motrix.

https://motrix.app

License:MIT License


Languages

Language:JavaScript 70.7%Language:Vue 22.2%Language:SCSS 6.4%Language:Python 0.2%Language:EJS 0.2%Language:HTML 0.2%Language:Dockerfile 0.1%