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-digikam.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
65
65
66
66
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.
67
67
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
+
68
70
### Options in all Selkies-based GUI containers
69
71
70
72
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:
213
215
- PUID=1000
214
216
- PGID=1000
215
217
- TZ=Etc/UTC
216
-
- SUBFOLDER=/ #optional
217
218
volumes:
218
219
- /path/to/config:/config
219
220
ports:
220
-
- 3000:3000#optional
221
-
- 3001:3001#optional
221
+
- 3000:3000
222
+
- 3001:3001
223
+
shm_size: "1gb"
222
224
restart: unless-stopped
223
225
```
224
226
@@ -230,10 +232,10 @@ docker run -d \
230
232
-e PUID=1000 \
231
233
-e PGID=1000 \
232
234
-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 \
236
237
-v /path/to/config:/config \
238
+
--shm-size="1gb" \
237
239
--restart unless-stopped \
238
240
lscr.io/linuxserver/digikam:latest
239
241
```
@@ -246,8 +248,8 @@ Containers are configured using parameters passed at runtime (such as those abov
246
248
247
249
| Parameter | Function |
248
250
| :----: | --- |
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.|
251
253
252
254
### Environment Variables (`-e`)
253
255
@@ -256,7 +258,6 @@ Containers are configured using parameters passed at runtime (such as those abov
256
258
|`PUID=1000`| for UserID - see below for explanation |
257
259
|`PGID=1000`| for GroupID - see below for explanation |
258
260
|`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/`|
260
261
261
262
### Volume Mappings (`-v`)
262
263
@@ -268,6 +269,7 @@ Containers are configured using parameters passed at runtime (such as those abov
268
269
269
270
| Parameter | Function |
270
271
| :-----: | --- |
272
+
|`--shm-size=`| Recommended for all desktop images. |
271
273
272
274
## Environment variables from files (Docker secrets)
273
275
@@ -498,13 +500,14 @@ To help with development, we generate this dependency graph.
0 commit comments