Skip to content

Commit dc82d17

Browse files
Bot Updating Documentation
1 parent 051457c commit dc82d17

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

docs/images/docker-digikam.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
6565

6666
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.
6767

68+
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.
69+
6870
### Options in all Selkies-based GUI containers
6971

7072
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.
@@ -213,12 +215,12 @@ services:
213215
- PUID=1000
214216
- PGID=1000
215217
- TZ=Etc/UTC
216-
- SUBFOLDER=/ #optional
217218
volumes:
218219
- /path/to/config:/config
219220
ports:
220-
- 3000:3000 #optional
221-
- 3001:3001 #optional
221+
- 3000:3000
222+
- 3001:3001
223+
shm_size: "1gb"
222224
restart: unless-stopped
223225
```
224226
@@ -230,10 +232,10 @@ docker run -d \
230232
-e PUID=1000 \
231233
-e PGID=1000 \
232234
-e TZ=Etc/UTC \
233-
-e SUBFOLDER=/ `#optional` \
234-
-p 3000:3000 `#optional` \
235-
-p 3001:3001 `#optional` \
235+
-p 3000:3000 \
236+
-p 3001:3001 \
236237
-v /path/to/config:/config \
238+
--shm-size="1gb" \
237239
--restart unless-stopped \
238240
lscr.io/linuxserver/digikam:latest
239241
```
@@ -246,8 +248,8 @@ Containers are configured using parameters passed at runtime (such as those abov
246248

247249
| Parameter | Function |
248250
| :----: | --- |
249-
| `3000:3000` | digiKam desktop gui HTTP, must be proxied |
250-
| `3001:3001` | digiKam desktop gui HTTPS |
251+
| `3000:3000` | Digikam desktop gui HTTP, must be proxied. |
252+
| `3001:3001` | Digikam desktop gui HTTPS. |
251253

252254
### Environment Variables (`-e`)
253255

@@ -256,7 +258,6 @@ Containers are configured using parameters passed at runtime (such as those abov
256258
| `PUID=1000` | for UserID - see below for explanation |
257259
| `PGID=1000` | for GroupID - see below for explanation |
258260
| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
259-
| `SUBFOLDER=/` | Specify a subfolder to use with reverse proxies, IE `/subfolder/` |
260261

261262
### Volume Mappings (`-v`)
262263

@@ -268,6 +269,7 @@ Containers are configured using parameters passed at runtime (such as those abov
268269

269270
| Parameter | Function |
270271
| :-----: | --- |
272+
| `--shm-size=` | Recommended for all desktop images. |
271273

272274
## Environment variables from files (Docker secrets)
273275

@@ -498,13 +500,14 @@ To help with development, we generate this dependency graph.
498500
svc-xsettingsd -> legacy-services
499501
}
500502
Base Images: {
501-
"baseimage-selkies:debianbookworm" <- "baseimage-debian:bookworm"
503+
"baseimage-selkies:debiantrixie" <- "baseimage-debian:trixie"
502504
}
503505
"digikam:latest" <- Base Images
504506
```
505507

506508
## Versions
507509

510+
* **22.09.25:** - Rebase to Debian Trixie.
508511
* **28.07.25:** - Fix CPU usage bug by disabling fake udev.
509512
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
510513
* **03.04.25:** - Update chromium launch options to improve performance.

0 commit comments

Comments
 (0)