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 ad30edf
Show file tree
Hide file tree
Showing 2 changed files with 56 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": "%APACHE_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%/%MKV_DRIVE%/makemkv", -> MKV_DRIVE is missing and the replacement will also not work
"destination": "/output",
"writeable": true
}
],
"backup_volumes": [
"nextcloud_aio_makemkv"
],
"devices": [
"/dev/sr0", -> check the devices for my drive
"/dev/sg2" -> check the devices for my drive
]
}
]
}
12 changes: 12 additions & 0 deletions community-containers/makemkv/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## MakeMKV
This container bundles MakeMKV and auto-configures it for you.

### Notes
- ⚠️ TODO
- 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 ad30edf

Please sign in to comment.