2022-03-09 00:42:36 +00:00
|
|
|
# [Kdenlive](https://kdenlive.org/) is a powerful free and open source cross-
|
|
|
|
# platform video editing program made by the KDE community. Feature rich and
|
|
|
|
# production ready.
|
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
kdenlive:
|
|
|
|
image: ghcr.io/linuxserver/kdenlive
|
|
|
|
container_name: kdenlive
|
|
|
|
environment:
|
|
|
|
# for UserID
|
2022-04-02 00:45:58 +00:00
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for GroupID
|
2022-03-09 00:42:36 +00:00
|
|
|
- PGID=${PGID:-100}
|
2023-02-12 01:01:09 +00:00
|
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
2022-03-09 00:42:36 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
|
|
# Specify a subfolder to use with reverse proxies, IE `/subfolder/`
|
|
|
|
- SUBFOLDER=/ # optional
|
|
|
|
volumes:
|
|
|
|
# Users home directory in the container, stores local files and settings
|
|
|
|
- ${BASEDIR:-/volume1/docker}/kdenlive/config:/config
|
|
|
|
ports:
|
|
|
|
# Kdenlive desktop gui
|
|
|
|
- 3000:3000
|
2023-04-08 00:50:33 +00:00
|
|
|
# Kdenlive desktop gui HTTPS
|
|
|
|
- 3001:3001
|
2022-03-09 00:42:36 +00:00
|
|
|
devices:
|
|
|
|
# Add this for hardware acceleration (Linux hosts only)
|
|
|
|
- /dev/dri:/dev/dri # optional
|
|
|
|
shm_size: "1gb" # optional
|
|
|
|
restart: unless-stopped
|