Skip to content

Commit 533ecbc

Browse files
Bot Updating Documentation
1 parent c9e0b99 commit 533ecbc

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

docs/images/docker-ardour.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
6161

6262
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.
6363

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+
6466
### Options in all Selkies-based GUI containers
6567

6668
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:
209211
- PUID=1000
210212
- PGID=1000
211213
- TZ=Etc/UTC
212-
- SUBFOLDER=/ #optional
213214
volumes:
214215
- /path/to/config:/config
215216
ports:
216-
- 3000:3000 #optional
217-
- 3001:3001 #optional
217+
- 3000:3000
218+
- 3001:3001
219+
shm_size: "1gb"
218220
restart: unless-stopped
219221
```
220222
@@ -226,10 +228,10 @@ docker run -d \
226228
-e PUID=1000 \
227229
-e PGID=1000 \
228230
-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 \
232233
-v /path/to/config:/config \
234+
--shm-size="1gb" \
233235
--restart unless-stopped \
234236
lscr.io/linuxserver/ardour:latest
235237
```
@@ -242,8 +244,8 @@ Containers are configured using parameters passed at runtime (such as those abov
242244

243245
| Parameter | Function |
244246
| :----: | --- |
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. |
247249

248250
### Environment Variables (`-e`)
249251

@@ -252,7 +254,6 @@ Containers are configured using parameters passed at runtime (such as those abov
252254
| `PUID=1000` | for UserID - see below for explanation |
253255
| `PGID=1000` | for GroupID - see below for explanation |
254256
| `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/` |
256257

257258
### Volume Mappings (`-v`)
258259

@@ -264,6 +265,7 @@ Containers are configured using parameters passed at runtime (such as those abov
264265

265266
| Parameter | Function |
266267
| :-----: | --- |
268+
| `--shm-size=` | Recommended for all desktop images. |
267269

268270
## Environment variables from files (Docker secrets)
269271

0 commit comments

Comments
 (0)