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-ardour.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
61
61
62
62
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.
63
63
64
+
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.
65
+
64
66
### Options in all Selkies-based GUI containers
65
67
66
68
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.
@@ -209,12 +211,12 @@ services:
209
211
- PUID=1000
210
212
- PGID=1000
211
213
- TZ=Etc/UTC
212
-
- SUBFOLDER=/ #optional
213
214
volumes:
214
215
- /path/to/config:/config
215
216
ports:
216
-
- 3000:3000#optional
217
-
- 3001:3001#optional
217
+
- 3000:3000
218
+
- 3001:3001
219
+
shm_size: "1gb"
218
220
restart: unless-stopped
219
221
```
220
222
@@ -226,10 +228,10 @@ docker run -d \
226
228
-e PUID=1000 \
227
229
-e PGID=1000 \
228
230
-e TZ=Etc/UTC \
229
-
-e SUBFOLDER=/ `#optional` \
230
-
-p 3000:3000 `#optional` \
231
-
-p 3001:3001 `#optional` \
231
+
-p 3000:3000 \
232
+
-p 3001:3001 \
232
233
-v /path/to/config:/config \
234
+
--shm-size="1gb" \
233
235
--restart unless-stopped \
234
236
lscr.io/linuxserver/ardour:latest
235
237
```
@@ -242,8 +244,8 @@ Containers are configured using parameters passed at runtime (such as those abov
242
244
243
245
| Parameter | Function |
244
246
| :----: | --- |
245
-
|`3000:3000`| Ardour desktop gui HTTP, must be proxied |
246
-
|`3001:3001`| Ardour desktop gui HTTPS |
247
+
|`3000:3000`| Ardour desktop gui HTTP, must be proxied.|
248
+
|`3001:3001`| Ardour desktop gui HTTPS.|
247
249
248
250
### Environment Variables (`-e`)
249
251
@@ -252,7 +254,6 @@ Containers are configured using parameters passed at runtime (such as those abov
252
254
|`PUID=1000`| for UserID - see below for explanation |
253
255
|`PGID=1000`| for GroupID - see below for explanation |
254
256
|`TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
255
-
|`SUBFOLDER=/`| Specify a subfolder to use with reverse proxies, IE `/subfolder/`|
256
257
257
258
### Volume Mappings (`-v`)
258
259
@@ -264,6 +265,7 @@ Containers are configured using parameters passed at runtime (such as those abov
264
265
265
266
| Parameter | Function |
266
267
| :-----: | --- |
268
+
|`--shm-size=`| Recommended for all desktop images. |
267
269
268
270
## Environment variables from files (Docker secrets)
0 commit comments