Skip to content

Commit 422b36c

Browse files
authored
Merge pull request #4 from linuxserver/trixie
rebase to trixie
2 parents 23aeac2 + 373ff0a commit 422b36c

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-selkies:debianbookworm
3+
FROM ghcr.io/linuxserver/baseimage-selkies:debiantrixie
44

55
# set version label
66
ARG BUILD_DATE

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ services:
220220
openshot:
221221
image: lscr.io/linuxserver/openshot:latest
222222
container_name: openshot
223-
security_opt:
224-
- seccomp:unconfined #optional
225223
environment:
226224
- PUID=1000
227225
- PGID=1000
@@ -231,6 +229,7 @@ services:
231229
ports:
232230
- 3000:3000
233231
- 3001:3001
232+
shm_size: "1gb"
234233
restart: unless-stopped
235234
```
236235
@@ -239,13 +238,13 @@ services:
239238
```bash
240239
docker run -d \
241240
--name=openshot \
242-
--security-opt seccomp=unconfined `#optional` \
243241
-e PUID=1000 \
244242
-e PGID=1000 \
245243
-e TZ=Etc/UTC \
246244
-p 3000:3000 \
247245
-p 3001:3001 \
248246
-v /path/to/openshot/config:/config \
247+
--shm-size="1gb" \
249248
--restart unless-stopped \
250249
lscr.io/linuxserver/openshot:latest
251250
```
@@ -262,7 +261,7 @@ Containers are configured using parameters passed at runtime (such as those abov
262261
| `-e PGID=1000` | for GroupID - see below for explanation |
263262
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
264263
| `-v /config` | User's home directory in the container, stores program settings and files. |
265-
| `--security-opt seccomp=unconfined` | For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. |
264+
| `--shm-size=` | Recommended for all desktop images. |
266265

267266
## Environment variables from files (Docker secrets)
268267

@@ -426,5 +425,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
426425

427426
## Versions
428427

428+
* **22.09.25:** - Rebase to Debian Trixie.
429429
* **29.07.25:** - Rebase to selkies. Breaking Change: HTTPS is now required. Either use a reverse proxy (like SWAG) with SSL cert or direct connect to port 3001 with HTTPS.
430430
* **23.12.24:** - Initial release.

readme-vars.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,11 @@ param_usage_include_ports: true
2121
param_ports:
2222
- {external_port: "3000", internal_port: "3000", port_desc: "OpenShot desktop gui (for reverse proxy only)."}
2323
- {external_port: "3001", internal_port: "3001", port_desc: "OpenShot desktop gui HTTPS."}
24-
opt_security_opt_param: true
25-
opt_security_opt_param_vars:
26-
- {run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker."}
24+
custom_params:
25+
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "Recommended for all desktop images."}
2726
# Selkies blurb settings
2827
selkies_blurb: true
2928
show_nvidia: true
30-
external_http_port: "3000"
31-
external_https_port: "3001"
32-
noto_fonts: "font-noto-cjk"
3329
# application setup block
3430
app_setup_block_enabled: true
3531
app_setup_block: |
@@ -106,5 +102,6 @@ init_diagram: |
106102
"openshot:latest" <- Base Images
107103
# changelog
108104
changelogs:
105+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
109106
- {date: "29.07.25:", desc: "Rebase to selkies. Breaking Change: HTTPS is now required. Either use a reverse proxy (like SWAG) with SSL cert or direct connect to port 3001 with HTTPS."}
110107
- {date: "23.12.24:", desc: "Initial release."}

0 commit comments

Comments
 (0)