Bot Updating Templated Files

This commit is contained in:
LinuxServer-CI 2023-02-13 06:39:58 -06:00
parent e87a2cf827
commit e7dfe92045
4 changed files with 16 additions and 6 deletions

View file

@ -56,7 +56,7 @@ The architectures supported by this image are:
| :----: | :----: | ---- |
| x86-64 | ✅ | amd64-\<version tag\> |
| arm64 | ❌ | |
| armhf| ❌ | |
| armhf | ❌ | |
## Application Setup
@ -84,7 +84,7 @@ services:
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- TZ=Etc/UTC
volumes:
- /path/to/config:/config
ports:
@ -99,11 +99,12 @@ docker run -d \
--name=audacity \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-e TZ=Etc/UTC \
-p 3000:3000 \
-v /path/to/config:/config \
--restart unless-stopped \
lscr.io/linuxserver/audacity:latest
```
## Parameters
@ -115,7 +116,7 @@ Container images are configured using parameters passed at runtime (such as thos
| `-p 3000` | Audacity desktop gui. |
| `-e PUID=1000` | for UserID - see below for explanation |
| `-e PGID=1000` | for GroupID - see below for explanation |
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. |
| `-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 |
## Environment variables from files (Docker secrets)