Skip to content

Commit 97f2aad

Browse files
Bot Updating Documentation
1 parent 12d3f24 commit 97f2aad

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/images/docker-gimp.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,6 @@ services:
172172
gimp:
173173
image: lscr.io/linuxserver/gimp:latest
174174
container_name: gimp
175-
security_opt:
176-
- seccomp:unconfined #optional
177175
environment:
178176
- PUID=1000
179177
- PGID=1000
@@ -183,6 +181,7 @@ services:
183181
ports:
184182
- 3000:3000
185183
- 3001:3001
184+
shm_size: "1gb"
186185
restart: unless-stopped
187186
```
188187
@@ -191,13 +190,13 @@ services:
191190
```bash
192191
docker run -d \
193192
--name=gimp \
194-
--security-opt seccomp=unconfined `#optional` \
195193
-e PUID=1000 \
196194
-e PGID=1000 \
197195
-e TZ=Etc/UTC \
198196
-p 3000:3000 \
199197
-p 3001:3001 \
200198
-v /path/to/config:/config \
199+
--shm-size="1gb" \
201200
--restart unless-stopped \
202201
lscr.io/linuxserver/gimp:latest
203202
```
@@ -231,7 +230,7 @@ Containers are configured using parameters passed at runtime (such as those abov
231230

232231
| Parameter | Function |
233232
| :-----: | --- |
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. |
235234

236235
## Environment variables from files (Docker secrets)
237236

0 commit comments

Comments
 (0)