Skip to content

Commit c10b486

Browse files
Bot Updating Documentation
1 parent b176bc8 commit c10b486

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/images/docker-yaak.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,6 @@ services:
170170
yaak:
171171
image: lscr.io/linuxserver/yaak:latest
172172
container_name: yaak
173-
security_opt:
174-
- seccomp:unconfined #optional
175173
environment:
176174
- PUID=1000
177175
- PGID=1000
@@ -181,6 +179,7 @@ services:
181179
ports:
182180
- 3000:3000
183181
- 3001:3001
182+
shm_size: "1gb"
184183
restart: unless-stopped
185184
```
186185
@@ -189,13 +188,13 @@ services:
189188
```bash
190189
docker run -d \
191190
--name=yaak \
192-
--security-opt seccomp=unconfined `#optional` \
193191
-e PUID=1000 \
194192
-e PGID=1000 \
195193
-e TZ=Etc/UTC \
196194
-p 3000:3000 \
197195
-p 3001:3001 \
198196
-v /path/to/yaak/config:/config \
197+
--shm-size="1gb" \
199198
--restart unless-stopped \
200199
lscr.io/linuxserver/yaak:latest
201200
```
@@ -229,7 +228,7 @@ Containers are configured using parameters passed at runtime (such as those abov
229228

230229
| Parameter | Function |
231230
| :-----: | --- |
232-
| `--security-opt seccomp=unconfined` | For Docker Engine only, many modern gui apps need this to function as syscalls are unkown to Docker. |
231+
| `--shm-size=` | Recommended for all desktop images. |
233232

234233
## Environment variables from files (Docker secrets)
235234

0 commit comments

Comments
 (0)