MDC Documents
Official Website
User Panel
Download
  • English
  • ็ฎ€ไฝ“ไธญๆ–‡
  • ็น้ซ”ไธญๆ–‡
Official Website
User Panel
Download
  • English
  • ็ฎ€ไฝ“ไธญๆ–‡
  • ็น้ซ”ไธญๆ–‡
  • ๐Ÿ  Home
  • ๐Ÿงพ File naming rules
  • ๐Ÿ’ป How to use each client
  • โš™๏ธ Client configuration
  • โ˜๏ธ Cloud configuration
  • ๐Ÿ”” Processing Result Push Configuration
  • ๐Ÿ—‚๏ธ Instructions related to cloud disk mounting and NAS
  • ๐Ÿž BUG report and feature suggestions
  • ๐Ÿšจ Error handling
  • ๐Ÿงน Clear configuration
  • ๐Ÿ“œ Legal document
  • โœ‰๏ธ Contact us

๐ŸŽ macOS

Allow Programs from Any Source

  • Run sudo spctl --master-disable in Terminal; the password is the user login password
  • Open System Preferences - Security & Privacy - Security, then check Any Source

๐Ÿณ Docker

New Material Design UI

Docker Hub page

Environment Variables

Field NameMeaningDefault
USER_IDCurrent user ID of the host1000
GROUP_IDCurrent user group ID of the host1001
NAMEDevice name shown in the User Panel and web titleDocker-MDC
ACCESS_USERNAMEDocker Web access account-
ACCESS_PASSWORDDocker Web access password-

If both ACCESS_USERNAME and ACCESS_PASSWORD are non-empty, the Docker Web Access Lock will be enabled automatically and used as login credentials.

Volumes

VolumeDescription
/config/.mdcConfiguration file directory
/dataMedia data directory
/data/outputMedia data output directory

Warning

Soft/hard link files are not recommended inside Docker containers.

If link files must be used, make sure the host directory and container directory are exactly the same when configuring volumes.

Port

  • 5800 HTTP

๐Ÿ“š Detailed Tutorial

NAS System

Expand NAS system tutorial

Open Container Manager and get the mvdctop/mdc-gui-lite image.

Ports

  • Map HTTP port 5800

Environment Variables

fnOSSynology DSMCommon Linux Distribution
USER_ID100010261000
GROUP_ID10011001000

  • Click - to remove empty environment variable values

Volumes

  • Create a new folder on the host. This directory maps to the container directory /config (required)

  • On the container page, right-click details and edit volumes

Finish Running

Open port 5800 in the browser:

http://192.168.1.2:5800

Common Linux Distribution

Expand common Linux distribution tutorial

It is recommended to add the current user to the Docker user group first to avoid directory permission issues caused by running with sudo.

Pull Docker Image

docker pull mvdctop/mdc-gui-lite
mkdir -p config data data/output

Place a Test Video

This command creates an empty test file. You can also use a real video file.

touch ./data/Resident.Evil.2002.mp4

Run the Container

shell

docker run \
  --rm \
  --name mdc-gui-lite \
  -p 5800:5800 \
  -v ${PWD}/data:/data \
  -v ${PWD}/output:/data/output \
  -v ${PWD}/config:/config/.mdc \
  -e USER_ID=$(id -u) \
  -e GROUP_ID=$(id -g) \
  -e NAME=Docker-MDC \
  mvdctop/mdc-gui-lite

docker-compose

Save as docker-compose.yml in the current directory:

version: '3.8'

services:
  mdc-gui-lite:
    image: mvdctop/mdc-gui-lite
    container_name: Docker-MDC-GUI-Lite
    ports:
      - "5800:5800"
    volumes:
      - ./data:/data
      - ./output:/data/output
      - ./config:/config/.mdc
    environment:
      - USER_ID=${USER_ID}
      - GROUP_ID=${GROUP_ID}
      - NAME=Docker-MDC

Run:

mkdir -p config data data/output
export USER_ID=$(id -u)
export GROUP_ID=$(id -g)
docker-compose up

Browser Access

Open port 5800 in the browser:

http://192.168.1.2:5800
Last Updated: 7/20/26, 6:45 PM
Prev
๐Ÿงพ File naming rules
Next
โš™๏ธ Client configuration