Skip to content

Commit

Permalink
community-containers: add makemkv
Browse files Browse the repository at this point in the history
Signed-off-by: Simon L. <[email protected]>
  • Loading branch information
szaimen committed Jun 27, 2024
1 parent 64bdfb5 commit 16f3acd
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
44 changes: 44 additions & 0 deletions community-containers/makemkv/makemkv.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"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": "5800",
"restart": "unless-stopped",
"ports": [
{
"ip_binding": "",
"port_number": "5800",
"protocol": "tcp"
}
],
"volumes": [
{
"source": "nextcloud_aio_makemkv",
"destination": "/config",
"writeable": true
},
{
"source": "%NEXTCLOUD_DATADIR%",
"destination": "/storage",
"writeable": false
},
{
"source": "%NEXTCLOUD_MOUNT%", --> add note that this needs to be configured, else it will discard it.
"destination": "/output", --> add to readme how to configure this in the makemkv gui (so that e.g. a subdir can be used)
"writeable": true
}
],
"backup_volumes": [
"nextcloud_aio_makemkv"
],
"devices": [
"/dev/sr0", -> check the devices for my drive, also add to readme that this device needs to be present
"/dev/sg2" -> check the devices for my drive, also add to readme that this device needs to be present
]
}
]
}
13 changes: 13 additions & 0 deletions community-containers/makemkv/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## MakeMKV
This container bundles MakeMKV and auto-configures it for you.

### Notes
- ⚠️ TODO
- This container should only be run in home networks as it exposes port 5800 unencrypted
- 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

0 comments on commit 16f3acd

Please sign in to comment.