File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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
190189docker 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
You can’t perform that action at this time.
0 commit comments