Skip to content

Commit 2cd519f

Browse files
Bot Updating Documentation
1 parent 8ccca1d commit 2cd519f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

docs/images/docker-krita.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
6262

6363
The web interface includes a terminal with passwordless `sudo` access. Any user with access to the GUI can gain root control within the container, install arbitrary software, and probe your local network.
6464

65+
While not generally recommended, certain legacy environments specifically those with older hardware or outdated Linux distributions may require the deactivation of the standard seccomp profile to get containerized desktop software to run. This can be achieved by utilizing the `--security-opt seccomp=unconfined` parameter. It is critical to use this option only when absolutely necessary as it disables a key security layer of Docker, elevating the potential for container escape vulnerabilities.
66+
6567
### Options in all Selkies-based GUI containers
6668

6769
This container is based on [Docker Baseimage Selkies](https://github.com/linuxserver/docker-baseimage-selkies), which provides the following environment variables and run configurations to customize its functionality.
@@ -171,8 +173,6 @@ services:
171173
krita:
172174
image: lscr.io/linuxserver/krita:latest
173175
container_name: krita
174-
security_opt:
175-
- seccomp:unconfined #optional
176176
environment:
177177
- PUID=1000
178178
- PGID=1000
@@ -182,6 +182,7 @@ services:
182182
ports:
183183
- 3000:3000
184184
- 3001:3001
185+
shm_size: "1gb"
185186
restart: unless-stopped
186187
```
187188
@@ -190,13 +191,13 @@ services:
190191
```bash
191192
docker run -d \
192193
--name=krita \
193-
--security-opt seccomp=unconfined `#optional` \
194194
-e PUID=1000 \
195195
-e PGID=1000 \
196196
-e TZ=Etc/UTC \
197197
-p 3000:3000 \
198198
-p 3001:3001 \
199199
-v /path/to/config:/config \
200+
--shm-size="1gb" \
200201
--restart unless-stopped \
201202
lscr.io/linuxserver/krita:latest
202203
```
@@ -230,7 +231,7 @@ Containers are configured using parameters passed at runtime (such as those abov
230231

231232
| Parameter | Function |
232233
| :-----: | --- |
233-
| `--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. |
234+
| `--shm-size=` | Recommended for all desktop images. |
234235

235236
## Environment variables from files (Docker secrets)
236237

@@ -461,13 +462,14 @@ To help with development, we generate this dependency graph.
461462
svc-xsettingsd -> legacy-services
462463
}
463464
Base Images: {
464-
"baseimage-selkies:debianbookworm" <- "baseimage-debian:bookworm"
465+
"baseimage-selkies:debiantrixie" <- "baseimage-debian:trixie"
465466
}
466467
"krita:latest" <- Base Images
467468
```
468469

469470
## Versions
470471

472+
* **22.09.25:** - Rebase to Debian Trixie.
471473
* **12.07.25:** - Rebase to Selkies and Debian, use AppImage, HTTPS IS NOW REQUIRED. Remove arm64 support.
472474
* **06.12.24:** - Rebase to Alpine 3.21.
473475
* **23.05.24:** - Rebase to Alpine 3.20.

0 commit comments

Comments
 (0)