Bot Updating Documentation

pull/90/head
LinuxServer-CI 2023-02-13 02:49:55 -06:00
rodzic 1887bcf429
commit 4335b1476b
1 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -37,7 +37,7 @@ The architectures supported by this image are:
| :----: | :----: | ---- | | :----: | :----: | ---- |
| x86-64 | ✅ | amd64-\<version tag\> | | x86-64 | ✅ | amd64-\<version tag\> |
| arm64 | ✅ | arm64v8-\<version tag\> | | arm64 | ✅ | arm64v8-\<version tag\> |
| armhf| ✅ | arm32v7-\<version tag\> | | armhf | ✅ | arm32v7-\<version tag\> |
## Application Setup ## Application Setup
@ -61,8 +61,8 @@ services:
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- SEC_KEY=<Your Key To Encrypt Security Data> - TZ=Etc/UTC
- TZ=Europe/London - "SEC_KEY=<Your Key To Encrypt Security Data>"
volumes: volumes:
- <path to data>:/config - <path to data>:/config
ports: ports:
@ -78,13 +78,14 @@ docker run -d \
--name=habridge \ --name=habridge \
-e PUID=1000 \ -e PUID=1000 \
-e PGID=1000 \ -e PGID=1000 \
-e SEC_KEY=<Your Key To Encrypt Security Data> \ -e TZ=Etc/UTC \
-e TZ=Europe/London \ -e SEC_KEY="<Your Key To Encrypt Security Data>" \
-p 8080:8080 \ -p 8080:8080 \
-p 50000:50000 \ -p 50000:50000 \
-v <path to data>:/config \ -v <path to data>:/config \
--restart unless-stopped \ --restart unless-stopped \
lscr.io/linuxserver/habridge:latest lscr.io/linuxserver/habridge:latest
``` ```
## Parameters ## Parameters
@ -104,8 +105,8 @@ Docker images are configured using parameters passed at runtime (such as those a
| :----: | --- | | :----: | --- |
| `PUID=1000` | for UserID - see below for explanation | | `PUID=1000` | for UserID - see below for explanation |
| `PGID=1000` | for GroupID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation |
| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
| `SEC_KEY=<Your Key To Encrypt Security Data>` | Key used to secure communication. | | `SEC_KEY=<Your Key To Encrypt Security Data>` | Key used to secure communication. |
| `TZ=Europe/London` | Specify a timezone to use EG Europe/London. |
### Volume Mappings (`-v`) ### Volume Mappings (`-v`)