-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Simon L. <[email protected]>
- Loading branch information
Showing
3 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"aio_services_v1": [ | ||
{ | ||
"container_name": "nextcloud-aio-makekv", | ||
"display_name": "MakeMKV", | ||
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/makemkv", | ||
"image": "jlesage/makemkv", | ||
"image_tag": "latest", | ||
"internal_port": "5802", | ||
"restart": "unless-stopped", | ||
"ports": [ | ||
{ | ||
"ip_binding": "", | ||
"port_number": "5802", | ||
"protocol": "tcp" | ||
} | ||
], | ||
"volumes": [ | ||
{ | ||
"source": "nextcloud_aio_makemkv", | ||
"destination": "/config", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "%NEXTCLOUD_DATADIR%", | ||
"destination": "/storage", | ||
"writeable": false | ||
}, | ||
{ | ||
"source": "%NEXTCLOUD_MOUNT%", | ||
"destination": "/output", | ||
"writeable": true | ||
}, | ||
{ | ||
"source": "/dev", | ||
"destination": "/dev", | ||
"writeable": false | ||
} | ||
], | ||
"environment": [ | ||
"TZ=%TIMEZONE%", | ||
"SECURE_CONNECTION=1", | ||
"WEB_AUTHENTICATION=1", | ||
"USER_ID=33", | ||
"GROUP_ID=33", | ||
"WEB_AUTHENTICATION_USERNAME=makemkv", | ||
"WEB_AUTHENTICATION_PASSWORD=%MAKEMKV_PASSWORD%", | ||
"WEB_LISTENING_PORT=5600" | ||
], | ||
"secrets": [ | ||
"MAKEMKV_PASSWORD" | ||
], | ||
"backup_volumes": [ | ||
"nextcloud_aio_makemkv" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## MakeMKV | ||
This container bundles MakeMKV and auto-configures it for you. | ||
|
||
### Notes | ||
- This container should only be run in home networks | ||
- ⚠️ 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. | ||
- This container only works on Linux and not on Docker-Desktop. | ||
- 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.. | ||
- After adding and starting the container, you need to visit `https://internal.ip.of.server:5800` 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`. | ||
- 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) | ||
- The configured `NEXTCLOUD_DATADIR` is getting mounted to `/storage` inside the container. | ||
- The config data of MakeMKV will be automatically included in AIOs backup solution! | ||
- See https://github.com/nextcloud/all-in-one/tree/main/community-containers#community-containers how to add it to the AIO stack | ||
|
||
### Repository | ||
https://github.com/jlesage/docker-makemkv | ||
|
||
### Maintainer | ||
https://github.com/szaimen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters