syntax and readme updates

This commit is contained in:
thelamer 2025-09-23 12:08:39 -04:00
parent 0fa777ed66
commit 769fe9751f
No known key found for this signature in database
3 changed files with 6 additions and 1 deletions

View file

@ -51,6 +51,6 @@ RUN \
COPY /root / COPY /root /
# ports and volumes # ports and volumes
EXPOSE 3000 EXPOSE 3001
VOLUME /config VOLUME /config

View file

@ -231,6 +231,7 @@ services:
ports: ports:
- 3000:3000 - 3000:3000
- 3001:3001 - 3001:3001
shm_size: "1gb"
restart: unless-stopped restart: unless-stopped
``` ```
@ -245,6 +246,7 @@ docker run -d \
-p 3000:3000 \ -p 3000:3000 \
-p 3001:3001 \ -p 3001:3001 \
-v /path/to/audacity/config:/config \ -v /path/to/audacity/config:/config \
--shm-size="1gb" \
--restart unless-stopped \ --restart unless-stopped \
lscr.io/linuxserver/audacity:latest lscr.io/linuxserver/audacity:latest
``` ```
@ -261,6 +263,7 @@ Containers are configured using parameters passed at runtime (such as those abov
| `-e PGID=1000` | for GroupID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation |
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
| `-v /config` | Users home directory in the container, stores program settings and images | | `-v /config` | Users home directory in the container, stores program settings and images |
| `--shm-size=` | Recommended for all desktop images. |
## Environment variables from files (Docker secrets) ## Environment variables from files (Docker secrets)

View file

@ -23,6 +23,8 @@ param_usage_include_ports: true
param_ports: param_ports:
- {external_port: "3000", internal_port: "3000", port_desc: "Audacity desktop gui HTTP, must be proxied."} - {external_port: "3000", internal_port: "3000", port_desc: "Audacity desktop gui HTTP, must be proxied."}
- {external_port: "3001", internal_port: "3001", port_desc: "Audacity desktop gui HTTPS."} - {external_port: "3001", internal_port: "3001", port_desc: "Audacity desktop gui HTTPS."}
custom_params:
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "Recommended for all desktop images."}
# Selkies blurb settings # Selkies blurb settings
selkies_blurb: true selkies_blurb: true
show_nvidia: true show_nvidia: true