Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/issue.bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ body:
label: CPU architecture
options:
- x86-64
- arm64
validations:
required: true
- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/external_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
echo "> External trigger running off of master branch. To disable this trigger, add \`kdenlive_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
EXT_RELEASE=$(curl -s 'https://apps.kde.org/kdenlive/index.xml' | awk -F'[<>]' '{for(i=1; i<=NF; i++) if($i=="guid"){split($(i+1), a, "#"); print a[2]; exit}}')
EXT_RELEASE=$(curl -sL https://archlinux.org/packages/extra/x86_64/kdenlive/ |awk -F'(<h2>kdenlive |</h2>)' '/<h2>/ {print $2}')
echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY
if grep -q "^kdenlive_master_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
Expand Down
28 changes: 6 additions & 22 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-selkies:ubuntunoble
FROM ghcr.io/linuxserver/baseimage-selkies:arch

# set version label
ARG BUILD_DATE
Expand All @@ -13,39 +13,23 @@ LABEL maintainer="thelamer"
ENV TITLE=Kdenlive \
NO_GAMEPAD=true

ARG DEBIAN_FRONTEND="noninteractive"

RUN \
echo "**** add icon ****" && \
curl -o \
/usr/share/selkies/www/icon.png \
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/kdenlive-logo.png && \
echo "**** install packages ****" && \
if [ -z ${KDENLIVE_VERSION+x} ]; then \
KDENLIVE_VERSION=$(curl -s 'https://apps.kde.org/kdenlive/index.xml' \
| awk -F'[<>]' '{for(i=1; i<=NF; i++) if($i=="guid"){split($(i+1), a, "#"); print a[2]; exit}}'); \
fi && \
curl -o \
/tmp/kdenlive.app -L \
"https://download.kde.org/stable/kdenlive/$(echo "$KDENLIVE_VERSION" | sed 's/\.[^.]*$//')/linux/kdenlive-${KDENLIVE_VERSION}-x86_64.AppImage" && \
cd /tmp && \
chmod +x kdenlive.app && \
./kdenlive.app --appimage-extract && \
mv \
squashfs-root \
/opt/kdenlive && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
pacman -Sy --noconfirm --needed \
kdenlive${KDENLIVE_VERSION:+=$KDENLIVE_VERSION} && \
echo "**** cleanup ****" && \
rm -rf \
/config/.cache \
/root/.cache \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
/var/cache/pacman/pkg/* \
/var/lib/pacman/sync/*

# add local files
COPY /root /

# ports and volumes
EXPOSE 3000
EXPOSE 3001
VOLUME /config
35 changes: 35 additions & 0 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-arch

# set version label
ARG BUILD_DATE
ARG VERSION
ARG KDENLIVE_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="thelamer"

# app title
ENV TITLE=Kdenlive \
NO_GAMEPAD=true

RUN \
echo "**** add icon ****" && \
curl -o \
/usr/share/selkies/www/icon.png \
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/kdenlive-logo.png && \
echo "**** install packages ****" && \
pacman -Sy --noconfirm --needed \
kdenlive${KDENLIVE_VERSION:+=$KDENLIVE_VERSION} && \
echo "**** cleanup ****" && \
rm -rf \
/tmp/* \
/var/cache/pacman/pkg/* \
/var/lib/pacman/sync/*

# add local files
COPY /root /

# ports and volumes
EXPOSE 3001
VOLUME /config
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ pipeline {
DOCKERHUB_IMAGE = 'linuxserver/kdenlive'
DEV_DOCKERHUB_IMAGE = 'lsiodev/kdenlive'
PR_DOCKERHUB_IMAGE = 'lspipepr/kdenlive'
DIST_IMAGE = 'ubuntu'
MULTIARCH = 'false'
DIST_IMAGE = 'arch'
MULTIARCH = 'true'
CI = 'true'
CI_WEB = 'true'
CI_PORT = '3001'
Expand Down Expand Up @@ -147,7 +147,7 @@ pipeline {
steps{
script{
env.EXT_RELEASE = sh(
script: ''' curl -s 'https://apps.kde.org/kdenlive/index.xml' | awk -F'[<>]' '{for(i=1; i<=NF; i++) if($i=="guid"){split($(i+1), a, "#"); print a[2]; exit}}' ''',
script: ''' curl -sL https://archlinux.org/packages/extra/x86_64/kdenlive/ |awk -F'(<h2>kdenlive |</h2>)' '/<h2>/ {print $2}' ''',
returnStdout: true).trim()
env.RELEASE_LINK = 'custom_command'
}
Expand Down
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,12 @@ The architectures supported by this image are:
| Architecture | Available | Tag |
| :----: | :----: | ---- |
| x86-64 | ✅ | amd64-\<version tag\> |
| arm64 | ❌ | |
| arm64 | ✅ | arm64v8-\<version tag\> |

## Application Setup

The application can be accessed at:

* http://yourhost:3000/
* https://yourhost:3001/

### Strict reverse proxies
Expand Down Expand Up @@ -221,8 +220,6 @@ services:
kdenlive:
image: lscr.io/linuxserver/kdenlive:latest
container_name: kdenlive
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
Expand All @@ -241,7 +238,6 @@ services:
```bash
docker run -d \
--name=kdenlive \
--security-opt seccomp=unconfined `#optional` \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
Expand All @@ -266,7 +262,6 @@ Containers are configured using parameters passed at runtime (such as those abov
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
| `-v /config` | Users home directory in the container, stores local files and settings |
| `--shm-size=` | This might be needed to prevent crashing |
| `--security-opt seccomp=unconfined` | For Docker Engine only, this may be required depending on your Docker and storage configuration. |

## Environment variables from files (Docker secrets)

Expand Down Expand Up @@ -430,6 +425,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **22.09.25:** - Rebase to Arch latest Appimage no longer working on Deb distros. Build for arm64 again.
* **06.08.25:** - Fix cpu bug, disable gamepad by default.
* **12.07.25:** - Rebase to Selkies and use official AppImage, HTTPS IS NOW REQUIRED. Remove arm64 support.
* **19.08.24:** - Rebase to noble. Use pypi and lsio wheels.
Expand Down
8 changes: 4 additions & 4 deletions jenkins-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

# jenkins variables
project_name: docker-kdenlive
external_type: nai
external_type: na
custom_version_command: |-
curl -s 'https://apps.kde.org/kdenlive/index.xml' | awk -F'[<>]' '{for(i=1; i<=NF; i++) if($i=="guid"){split($(i+1), a, "#"); print a[2]; exit}}'
curl -sL https://archlinux.org/packages/extra/x86_64/kdenlive/ |awk -F'(<h2>kdenlive |</h2>)' '/<h2>/ {print $2}'
release_type: stable
release_tag: latest
ls_branch: master
Expand All @@ -17,8 +17,8 @@ repo_vars:
- DOCKERHUB_IMAGE = 'linuxserver/kdenlive'
- DEV_DOCKERHUB_IMAGE = 'lsiodev/kdenlive'
- PR_DOCKERHUB_IMAGE = 'lspipepr/kdenlive'
- DIST_IMAGE = 'ubuntu'
- MULTIARCH = 'false'
- DIST_IMAGE = 'arch'
- MULTIARCH = 'true'
- CI = 'true'
- CI_WEB = 'true'
- CI_PORT = '3001'
Expand Down
6 changes: 2 additions & 4 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ project_blurb_optional_extras_enabled: false
# supported architectures
available_architectures:
- {arch: "{{ arch_x86_64 }}", tag: "latest"}
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
# development version
development_versions: false
# container parameters
Expand All @@ -25,9 +26,6 @@ param_ports:
- {external_port: "3001", internal_port: "3001", port_desc: "Kdenlive desktop gui HTTPS."}
opt_custom_params:
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "This might be needed to prevent crashing"}
opt_security_opt_param: true
opt_security_opt_param_vars:
- {run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, this may be required depending on your Docker and storage configuration."}
# Selkies blurb settings
selkies_blurb: true
show_nvidia: true
Expand All @@ -36,7 +34,6 @@ app_setup_block_enabled: true
app_setup_block: |
The application can be accessed at:

* http://yourhost:3000/
* https://yourhost:3001/
# init diagram
init_diagram: |
Expand Down Expand Up @@ -108,6 +105,7 @@ init_diagram: |
"kdenlive:latest" <- Base Images
# changelog
changelogs:
- {date: "22.09.25:", desc: "Rebase to Arch latest Appimage no longer working on Deb distros. Build for arm64 again."}
- {date: "06.08.25:", desc: "Fix cpu bug, disable gamepad by default."}
- {date: "12.07.25:", desc: "Rebase to Selkies and use official AppImage, HTTPS IS NOW REQUIRED. Remove arm64 support."}
- {date: "19.08.24:", desc: "Rebase to noble. Use pypi and lsio wheels."}
Expand Down
2 changes: 1 addition & 1 deletion root/defaults/autostart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kdenlive
dbus-launch kdenlive
2 changes: 1 addition & 1 deletion root/defaults/menu.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<openbox_menu xmlns="http://openbox.org/3.4/menu">
<menu id="root-menu" label="MENU">
<item label="Kdenlive" icon="/opt/kdenlive/usr/share/icons/hicolor/48x48/apps/kdenlive.png"><action name="Execute"><command>/usr/bin/kdenlive</command></action></item>
<item label="Kdenlive" icon="/usr/share/icons/hicolor/32x32/apps/kdenlive.png"><action name="Execute"><command>dbus-launch /usr/bin/kdenlive</command></action></item>
<item label="xterm" icon="/usr/share/pixmaps/xterm-color_48x48.xpm"><action name="Execute"><command>/usr/bin/xterm</command></action></item>
</menu>
</openbox_menu>
4 changes: 0 additions & 4 deletions root/usr/bin/kdenlive

This file was deleted.