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-kicad.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
@@ -174,8 +174,6 @@ services:
174
174
kicad:
175
175
image: lscr.io/linuxserver/kicad:latest
176
176
container_name: kicad
177
-
security_opt:
178
-
- seccomp:unconfined #optional
179
177
environment:
180
178
- PUID=1000
181
179
- PGID=1000
@@ -185,6 +183,7 @@ services:
185
183
ports:
186
184
- 3000:3000
187
185
- 3001:3001
186
+
shm_size: "1gb"
188
187
restart: unless-stopped
189
188
```
190
189
@@ -193,13 +192,13 @@ services:
193
192
```bash
194
193
docker run -d \
195
194
--name=kicad \
196
-
--security-opt seccomp=unconfined `#optional` \
197
195
-e PUID=1000 \
198
196
-e PGID=1000 \
199
197
-e TZ=Etc/UTC \
200
198
-p 3000:3000 \
201
199
-p 3001:3001 \
202
200
-v /path/to/config:/config \
201
+
--shm-size="1gb" \
203
202
--restart unless-stopped \
204
203
lscr.io/linuxserver/kicad:latest
205
204
```
@@ -233,7 +232,7 @@ Containers are configured using parameters passed at runtime (such as those abov
233
232
234
233
| Parameter | Function |
235
234
| :-----: | --- |
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. |
237
236
238
237
## Environment variables from files (Docker secrets)
0 commit comments