Skip to content

Commit d267606

Browse files
committed
feat: update
1 parent c757799 commit d267606

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ A modern MP4 muxing tool with a desktop GUI interface, powered by MP4Box.
2929
- **Queue system**: Build and manage multiple muxing jobs in a queue
3030
- **Cross-platform**: Available for Windows (8+ x64), macOS, and Linux
3131
- **Theme support**: Light, dark, and auto themes
32-
- **Persistent configuration**: Settings stored in OS-appropriate locations (portable mode available)
3332
- **Quick access titles**: Save and use quick access titles for audio/subtitles
3433

3534
### Supported Formats
@@ -40,7 +39,7 @@ A modern MP4 muxing tool with a desktop GUI interface, powered by MP4Box.
4039
**Chapters**: OGM, XML, MP4 (extracted from existing files)
4140
**Output**: MP4 container only
4241

43-
## Requirements
42+
## Desktop Application Requirements
4443

4544
**MP4Box** must be installed and available in your system PATH, or configured in the application settings.
4645

@@ -50,6 +49,10 @@ A modern MP4 muxing tool with a desktop GUI interface, powered by MP4Box.
5049
- macOS: `brew install gpac`
5150
- Linux: `apt install gpac` or `yum install gpac`
5251

52+
## Docker Application Requirements
53+
54+
Everything is self contained and included that you would need.
55+
5356
## Installation
5457

5558
### Option 1: Download Pre-built Binaries (Recommended)
@@ -94,6 +97,9 @@ services:
9497
volumes:
9598
# mount for persistent config and logs
9699
- /SOME_PATH/runtime:/app/runtime
100+
# mount volume(s) you may need for input/output files
101+
- /SOME_PATH:/data/SOME_PATH
102+
- /SOME_PATH2:/data/SOME_PATH2
97103
environment:
98104
- PYTHONUNBUFFERED=1
99105
restart: "no"

examples/docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ services:
88
volumes:
99
# mount for persistent config and logs
1010
- /SOME_PATH/runtime:/app/runtime
11+
# mount volume(s) you may need for input/output files
12+
- /SOME_PATH:/data/SOME_PATH
13+
- /SOME_PATH2:/data/SOME_PATH2
1114
environment:
1215
- PYTHONUNBUFFERED=1
1316
restart: "no"

0 commit comments

Comments
 (0)