Skip to content

Commit 83a1de9

Browse files
Bot Updating Documentation
1 parent a38eb04 commit 83a1de9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/images/docker-kicad.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,6 @@ services:
174174
kicad:
175175
image: lscr.io/linuxserver/kicad:latest
176176
container_name: kicad
177-
security_opt:
178-
- seccomp:unconfined #optional
179177
environment:
180178
- PUID=1000
181179
- PGID=1000
@@ -185,6 +183,7 @@ services:
185183
ports:
186184
- 3000:3000
187185
- 3001:3001
186+
shm_size: "1gb"
188187
restart: unless-stopped
189188
```
190189
@@ -193,13 +192,13 @@ services:
193192
```bash
194193
docker run -d \
195194
--name=kicad \
196-
--security-opt seccomp=unconfined `#optional` \
197195
-e PUID=1000 \
198196
-e PGID=1000 \
199197
-e TZ=Etc/UTC \
200198
-p 3000:3000 \
201199
-p 3001:3001 \
202200
-v /path/to/config:/config \
201+
--shm-size="1gb" \
203202
--restart unless-stopped \
204203
lscr.io/linuxserver/kicad:latest
205204
```
@@ -233,7 +232,7 @@ Containers are configured using parameters passed at runtime (such as those abov
233232

234233
| Parameter | Function |
235234
| :-----: | --- |
236-
| `--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. |
235+
| `--shm-size=` | Recommended for all desktop images. |
237236

238237
## Environment variables from files (Docker secrets)
239238

0 commit comments

Comments
 (0)