You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -185,8 +185,6 @@ services:
185
185
rawtherapee:
186
186
image: lscr.io/linuxserver/rawtherapee:latest
187
187
container_name: rawtherapee
188
-
security_opt:
189
-
- seccomp:unconfined #optional
190
188
environment:
191
189
- PUID=1000
192
190
- PGID=1000
@@ -196,6 +194,7 @@ services:
196
194
ports:
197
195
- 3000:3000
198
196
- 3001:3001
197
+
shm_size: "1gb"
199
198
restart: unless-stopped
200
199
```
201
200
@@ -204,13 +203,13 @@ services:
204
203
```bash
205
204
docker run -d \
206
205
--name=rawtherapee \
207
-
--security-opt seccomp=unconfined `#optional` \
208
206
-e PUID=1000 \
209
207
-e PGID=1000 \
210
208
-e TZ=Etc/UTC \
211
209
-p 3000:3000 \
212
210
-p 3001:3001 \
213
211
-v /path/to/rawtherapee/config:/config \
212
+
--shm-size="1gb" \
214
213
--restart unless-stopped \
215
214
lscr.io/linuxserver/rawtherapee:latest
216
215
```
@@ -227,7 +226,7 @@ Containers are configured using parameters passed at runtime (such as those abov
227
226
|`-e PGID=1000`| for GroupID - see below for explanation |
228
227
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
229
228
|`-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. |
231
230
232
231
## Environment variables from files (Docker secrets)
233
232
@@ -391,5 +390,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
391
390
392
391
## Versions
393
392
393
+
***22.09.25:** - Rebase to Debian Trixie.
394
394
***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.
- {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."}
27
26
# Selkies blurb settings
28
27
selkies_blurb: true
29
28
# application setup block
@@ -102,5 +101,6 @@ init_diagram: |
102
101
"rawtherapee:latest" <- Base Images
103
102
# changelog
104
103
changelogs:
104
+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
105
105
- {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."}
0 commit comments