https://github.com/binhex/arch-makemkv
Docker build script for Arch Linux base with MakeMKV installed
https://github.com/binhex/arch-makemkv
Last synced: 5 months ago
JSON representation
Docker build script for Arch Linux base with MakeMKV installed
- Host: GitHub
- URL: https://github.com/binhex/arch-makemkv
- Owner: binhex
- License: gpl-3.0
- Created: 2019-06-20T20:40:50.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-12-24T18:48:59.000Z (6 months ago)
- Last Synced: 2025-12-26T09:28:04.223Z (6 months ago)
- Language: Shell
- Homepage:
- Size: 72.3 KB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Application
[MakeMKV](https://makemkv.com/)
## Description
MakeMKV is your one-click solution to convert video that you own into free and
patents-unencumbered format that can be played everywhere. MakeMKV is a format
converter, otherwise called "transcoder". It converts the video clips from
proprietary (and usually encrypted) disc into a set of MKV files, preserving
most information but not changing it in any way. The MKV format can store
multiple video/audio tracks with all meta-information and preserve chapters.
There are many players that can play MKV files nearly on all platforms, and
there are tools to convert MKV files to many formats, including DVD and Blu-ray
discs.
## Build notes
Latest stable MakeMKV release from Arch Linux.
## Usage
```bash
docker run -d \
-p 5900:5900 \
-p 6080:6080 \
--name= \
--privileged=true \
-v :/config \
-v /etc/localtime:/etc/localtime:ro \
-e HTTPS_CERT_PATH= \
-e HTTPS_KEY_PATH= \
-e WEBPAGE_TITLE= \
-e VNC_PASSWORD= \
-e ENABLE_STARTUP_SCRIPTS= \
-e HEALTHCHECK_COMMAND= \
-e HEALTHCHECK_ACTION= \
-e HEALTHCHECK_HOSTNAME= \
-e UMASK= \
-e WEBUI_PORT= \
-e PUID= \
-e PGID= \
binhex/arch-makemkv
```
Please replace all user variables in the above command defined by <> with the
correct values.
## Example
```bash
docker run -d \
-p 5900:5900 \
-p 6080:6080 \
--name=makemkv \
--privileged=true \
-v /apps/docker/makemkv:/config \
-v /etc/localtime:/etc/localtime:ro \
-e WEBPAGE_TITLE=Tower \
-e VNC_PASSWORD=mypassword \
-e ENABLE_STARTUP_SCRIPTS=yes \
-e UMASK=000 \
-e WEBUI_PORT=6080 \
-e PUID=0 \
-e PGID=0 \
binhex/arch-makemkv
```
If you do specify a password for the web ui via the env var 'VNC_PASSWORD' then
it MUST be 6 characters or longer, otherwise it will be ignored.
## Access via web interface (noVNC)
`http://:/vnc.html?resize=remote&host=&port=&&autoconnect=1`
e.g.:-
`http://192.168.1.10:6080/vnc.html?resize=remote&host=192.168.1.10&port=6080&&autoconnect=1`
## Access via VNC client
`::`
e.g.:-
`192.168.1.10::5900`
## Notes
`ENABLE_STARTUP_SCRIPTS` when set to `yes` will allow a user to install
additional packages from the official Arch Repository or the Arch User
Repository (AUR) via scripts located in the folder `/config/home/scripts/`. A
sample script is located at `/config/home/scripts/example-startup-script.sh`
with comments to guide the user on script creation.
User ID (PUID) and Group ID (PGID) can be found by issuing the following command
for the user you want to run the container as:-
```bash
id
```
___
If you appreciate my work, then please consider buying me a beer :D
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4)
[Documentation](https://github.com/binhex/documentation) | [Support forum](https://forums.unraid.nets/topic/71764-support-binhex-makemkv/)