This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/jlesage/makemkv](https://redirect.github.com/jlesage/docker-makemkv) | major | `9c55c3b` -> `501b52b` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>jlesage/docker-makemkv (docker.io/jlesage/makemkv)</summary> ### [`v25.02.2`](https://redirect.github.com/jlesage/docker-makemkv/releases/tag/v25.02.2): Version 25.02.2 [Compare Source](https://redirect.github.com/jlesage/docker-makemkv/compare/v25.02.1...v25.02.2) Changes in this release: - Report the case where an optical drive cannot be used because of an improper user namespace configuration. ### [`v25.02.1`](https://redirect.github.com/jlesage/docker-makemkv/releases/tag/v25.02.1): Version 25.02.1 [Compare Source](https://redirect.github.com/jlesage/docker-makemkv/compare/v24.12.1...v25.02.1) Changes in this release: - Updated MakeMKV to version 1.17.9. - Improved detection of optical drive usability issues. - Improved disc ejection mechanism. - Fixed optical drive detection by MakeMKV when using a license key. - Added support for hooks. - Updated baseimage to version 4.7.1, which brings the following changes (since last used version): - Added environment variable that allows configuring the web authentication token lifetime. - Fixed compatibility issues that were introduced with support of GTK4 applications. - Increased the default service ready timeout from 5 seconds to 10 seconds and allow runtime adjustment via environment variable. - Rebuild against latest distro images to get security fixes. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
97 lines
2.9 KiB
YAML
97 lines
2.9 KiB
YAML
image:
|
|
repository: docker.io/jlesage/makemkv
|
|
tag: v25.02.2@sha256:501b52bc3c782d13c64b66ac82cf456444c37643e0a974eab5fdb5ec784d8a7a
|
|
pullPolicy: IfNotPresent
|
|
makemkv:
|
|
# General Settings
|
|
KEEP_APP_RUNNING: false
|
|
# GUI Settings
|
|
DISPLAY_WIDTH: 1280
|
|
DISPLAY_HEIGHT: 768
|
|
DARK_MODE: false
|
|
# App Settings
|
|
MAKEMKV_KEY: "BETA"
|
|
AUTO_DISC_RIPPER_INTERVAL: 5
|
|
AUTO_DISC_RIPPER_BD_MODE: "mkv"
|
|
AUTO_DISC_RIPPER_MAKEMKV_PROFILE: ""
|
|
SECURE_CONNECTION: false
|
|
ENABLE_CJK_FONT: false
|
|
AUTO_DISC_RIPPER: false
|
|
AUTO_DISC_RIPPER_EJECT: false
|
|
AUTO_DISC_RIPPER_PARALLEL_RIP: false
|
|
AUTO_DISC_RIPPER_NO_GUI_PROGRESS: false
|
|
AUTO_DISC_RIPPER_FORCE_UNIQUE_OUTPUT_DIR: false
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10180
|
|
targetPort: 5800
|
|
vnc:
|
|
enabled: true
|
|
ports:
|
|
vnc:
|
|
enabled: true
|
|
port: 10181
|
|
targetPort: 5900
|
|
configmap:
|
|
makemkv:
|
|
enabled: true
|
|
data:
|
|
ENABLE_CJK_FONT: '{{ ternary "1" "0" .Values.makemkv.ENABLE_CJK_FONT }}'
|
|
KEEP_APP_RUNNING: '{{ ternary "1" "0" .Values.makemkv.KEEP_APP_RUNNING }}'
|
|
SECURE_CONNECTION: '{{ ternary "1" "0" .Values.makemkv.SECURE_CONNECTION }}'
|
|
DISPLAY_WIDTH: "{{ .Values.makemkv.DISPLAY_WIDTH }}"
|
|
DISPLAY_HEIGHT: "{{ .Values.makemkv.DISPLAY_HEIGHT }}"
|
|
DARK_MODE: '{{ ternary "1" "0" .Values.makemkv.DARK_MODE }}'
|
|
MAKEMKV_KEY: "{{ .Values.makemkv.MAKEMKV_KEY }}"
|
|
AUTO_DISC_RIPPER_INTERVAL: "{{ .Values.makemkv.AUTO_DISC_RIPPER_INTERVAL }}"
|
|
AUTO_DISC_RIPPER_BD_MODE: "{{ .Values.makemkv.AUTO_DISC_RIPPER_BD_MODE }}"
|
|
AUTO_DISC_RIPPER_MAKEMKV_PROFILE: "{{ .Values.makemkv.AUTO_DISC_RIPPER_MAKEMKV_PROFILE }}"
|
|
AUTO_DISC_RIPPER: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER }}'
|
|
AUTO_DISC_RIPPER_EJECT: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER_EJECT }}'
|
|
AUTO_DISC_RIPPER_PARALLEL_RIP: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER_PARALLEL_RIP }}'
|
|
AUTO_DISC_RIPPER_NO_GUI_PROGRESS: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER_NO_GUI_PROGRESS }}'
|
|
AUTO_DISC_RIPPER_FORCE_UNIQUE_OUTPUT_DIR: '{{ ternary "1" "0" .Values.makemkv.AUTO_DISC_RIPPER_FORCE_UNIQUE_OUTPUT_DIR }}'
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
storage:
|
|
enabled: true
|
|
mountPath: "/storage"
|
|
output:
|
|
enabled: true
|
|
mountPath: "/output"
|
|
portal:
|
|
open:
|
|
enabled: true
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
securityContext:
|
|
capabilities:
|
|
add:
|
|
- NET_BIND_SERVICE
|
|
- KILL
|
|
probes:
|
|
liveness:
|
|
type: tcp
|
|
readiness:
|
|
type: tcp
|
|
startup:
|
|
type: tcp
|
|
env:
|
|
VNC_PASSWORD: ""
|
|
envFrom:
|
|
- configMapRef:
|
|
name: "makemkv"
|