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: docs/images/docker-gimp.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,8 +172,6 @@ services:
172
172
gimp:
173
173
image: lscr.io/linuxserver/gimp:latest
174
174
container_name: gimp
175
-
security_opt:
176
-
- seccomp:unconfined #optional
177
175
environment:
178
176
- PUID=1000
179
177
- PGID=1000
@@ -183,6 +181,7 @@ services:
183
181
ports:
184
182
- 3000:3000
185
183
- 3001:3001
184
+
shm_size: "1gb"
186
185
restart: unless-stopped
187
186
```
188
187
@@ -191,13 +190,13 @@ services:
191
190
```bash
192
191
docker run -d \
193
192
--name=gimp \
194
-
--security-opt seccomp=unconfined `#optional` \
195
193
-e PUID=1000 \
196
194
-e PGID=1000 \
197
195
-e TZ=Etc/UTC \
198
196
-p 3000:3000 \
199
197
-p 3001:3001 \
200
198
-v /path/to/config:/config \
199
+
--shm-size="1gb" \
201
200
--restart unless-stopped \
202
201
lscr.io/linuxserver/gimp:latest
203
202
```
@@ -231,7 +230,7 @@ Containers are configured using parameters passed at runtime (such as those abov
231
230
232
231
| Parameter | Function |
233
232
| :-----: | --- |
234
-
|`--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. |
233
+
|`--shm-size=`|Recommended for all desktop images. |
235
234
236
235
## Environment variables from files (Docker secrets)
0 commit comments