Skip to content

Commit bfc5f40

Browse files
committed
community-containers: add makemkv
Signed-off-by: Simon L. <[email protected]>
1 parent 35ff787 commit bfc5f40

File tree

3 files changed

+79
-1
lines changed

3 files changed

+79
-1
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"aio_services_v1": [
3+
{
4+
"container_name": "nextcloud-aio-makekv",
5+
"display_name": "MakeMKV",
6+
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/makemkv",
7+
"image": "jlesage/makemkv",
8+
"image_tag": "latest",
9+
"internal_port": "5802",
10+
"restart": "unless-stopped",
11+
"ports": [
12+
{
13+
"ip_binding": "",
14+
"port_number": "5802",
15+
"protocol": "tcp"
16+
}
17+
],
18+
"volumes": [
19+
{
20+
"source": "nextcloud_aio_makemkv",
21+
"destination": "/config",
22+
"writeable": true
23+
},
24+
{
25+
"source": "%NEXTCLOUD_DATADIR%",
26+
"destination": "/storage",
27+
"writeable": false
28+
},
29+
{
30+
"source": "%NEXTCLOUD_MOUNT%",
31+
"destination": "/output",
32+
"writeable": true
33+
},
34+
{
35+
"source": "/dev",
36+
"destination": "/dev",
37+
"writeable": false
38+
}
39+
],
40+
"environment": [
41+
"TZ=%TIMEZONE%",
42+
"SECURE_CONNECTION=1",
43+
"WEB_AUTHENTICATION=1",
44+
"USER_ID=33",
45+
"GROUP_ID=33",
46+
"WEB_AUTHENTICATION_USERNAME=makemkv",
47+
"WEB_AUTHENTICATION_PASSWORD=%MAKEMKV_PASSWORD%",
48+
"WEB_LISTENING_PORT=5802"
49+
],
50+
"secrets": [
51+
"MAKEMKV_PASSWORD"
52+
],
53+
"backup_volumes": [
54+
"nextcloud_aio_makemkv"
55+
]
56+
}
57+
]
58+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## MakeMKV
2+
This container bundles MakeMKV and auto-configures it for you.
3+
4+
### Notes
5+
- This container should only be run in home networks
6+
- ⚠️ This container mounts all devices from the host inside the container in order to be able to access the external DVD/Blu-ray drives which is a security issue. However no better solution was found for the time being.
7+
- This container only works on Linux and not on Docker-Desktop.
8+
- This container requires the [`NEXTCLOUD_MOUNT` variable in AIO to be set](https://github.com/nextcloud/all-in-one?tab=readme-ov-file#how-to-allow-the-nextcloud-container-to-access-directories-on-the-host). Otherwise the output will not be saved correctly..
9+
- After adding and starting the container, you need to visit `https://internal.ip.of.server:5802` in order to log in with the `makemkv` user and the password that you can retrieve when running `sudo docker inspect nextcloud-aio-makemkv | grep WEB_AUTHENTICATION_PASSWORD`. (It uses a self-signed certificate, so you need to accept the warning).
10+
- After the first login, you can adjust the `/output` directory in the MakeMKV settings to a subdirectory of the root of your chosen `NEXTCLOUD_MOUNT`. (by default `NEXTCLOUD_MOUNT` is mounted to `/output` inside the container. Thus all data is written to the root of it)
11+
- The configured `NEXTCLOUD_DATADIR` is getting mounted to `/storage` inside the container.
12+
- The config data of MakeMKV will be automatically included in AIOs backup solution!
13+
- ⚠️ After you are done doing your operations, remove the container for better security again from the stack: https://github.com/nextcloud/all-in-one/tree/main/community-containers#how-to-remove-containers-from-aios-stack
14+
- See https://github.com/nextcloud/all-in-one/tree/main/community-containers#community-containers how to add it to the AIO stack
15+
16+
### Repository
17+
https://github.com/jlesage/docker-makemkv
18+
19+
### Maintainer
20+
https://github.com/szaimen

php/containers-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
},
214214
"source": {
215215
"type": "string",
216-
"pattern": "^((nextcloud_aio_[a-z_]+)|(%[A-Z_]+%))$"
216+
"pattern": "^((nextcloud_aio_[a-z_]+)|(%[A-Z_]+%)|(/dev))$"
217217
},
218218
"writeable": {
219219
"type": "boolean"

0 commit comments

Comments
 (0)