Skip to content

Commit d4346d7

Browse files
committed
rebase to trixie
1 parent f876afe commit d4346d7

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

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
@@ -185,8 +185,6 @@ services:
185185
rawtherapee:
186186
image: lscr.io/linuxserver/rawtherapee:latest
187187
container_name: rawtherapee
188-
security_opt:
189-
- seccomp:unconfined #optional
190188
environment:
191189
- PUID=1000
192190
- PGID=1000
@@ -196,6 +194,7 @@ services:
196194
ports:
197195
- 3000:3000
198196
- 3001:3001
197+
shm_size: "1gb"
199198
restart: unless-stopped
200199
```
201200
@@ -204,13 +203,13 @@ services:
204203
```bash
205204
docker run -d \
206205
--name=rawtherapee \
207-
--security-opt seccomp=unconfined `#optional` \
208206
-e PUID=1000 \
209207
-e PGID=1000 \
210208
-e TZ=Etc/UTC \
211209
-p 3000:3000 \
212210
-p 3001:3001 \
213211
-v /path/to/rawtherapee/config:/config \
212+
--shm-size="1gb" \
214213
--restart unless-stopped \
215214
lscr.io/linuxserver/rawtherapee:latest
216215
```
@@ -227,7 +226,7 @@ Containers are configured using parameters passed at runtime (such as those abov
227226
| `-e PGID=1000` | for GroupID - see below for explanation |
228227
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
229228
| `-v /config` | User's home directory in the container, stores program settings and files. |
230-
| `--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. |
229+
| `--shm-size=` | Recommended for all desktop images. |
231230

232231
## Environment variables from files (Docker secrets)
233232

@@ -391,5 +390,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
391390

392391
## Versions
393392

393+
* **22.09.25:** - Rebase to Debian Trixie.
394394
* **29.07.25:** - Rebase to selkies. Breaking Change: HTTPS is now required. Either use a reverse proxy with SSL cert or direct connect to port 8181 with HTTPS.
395395
* **24.09.24:** - Initial release.

readme-vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ param_usage_include_ports: true
2121
param_ports:
2222
- {external_port: "3000", internal_port: "3000", port_desc: "RawTherapee desktop gui (only for reverse proxy access)."}
2323
- {external_port: "3001", internal_port: "3001", port_desc: "RawTherapee 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
# application setup block
@@ -102,5 +101,6 @@ init_diagram: |
102101
"rawtherapee:latest" <- Base Images
103102
# changelog
104103
changelogs:
104+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
105105
- {date: "29.07.25:", desc: "Rebase to selkies. Breaking Change: HTTPS is now required. Either use a reverse proxy with SSL cert or direct connect to port 8181 with HTTPS."}
106106
- {date: "24.09.24:", desc: "Initial release."}

0 commit comments

Comments
 (0)