From 6eaa65d3d86ab72e343c9434e5bdacde46f6c187 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 13 Feb 2023 15:49:57 -0600 Subject: [PATCH] Bot Updating Documentation --- images/docker-plex.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/images/docker-plex.md b/images/docker-plex.md index a5ee50fd6..ea8e83ca1 100644 --- a/images/docker-plex.md +++ b/images/docker-plex.md @@ -31,7 +31,7 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\ | | arm64 | ✅ | arm64v8-\ | -| armhf| ✅ | arm32v7-\ | +| armhf | ✅ | arm32v7-\ | ## Application Setup @@ -87,6 +87,7 @@ services: environment: - PUID=1000 - PGID=1000 + - TZ=Etc/UTC - VERSION=docker - PLEX_CLAIM= #optional volumes: @@ -104,6 +105,7 @@ docker run -d \ --net=host \ -e PUID=1000 \ -e PGID=1000 \ + -e TZ=Etc/UTC \ -e VERSION=docker \ -e PLEX_CLAIM= `#optional` \ -v /path/to/library:/config \ @@ -111,6 +113,7 @@ docker run -d \ -v /path/to/movies:/movies \ --restart unless-stopped \ lscr.io/linuxserver/plex:latest + ``` ## Parameters @@ -134,6 +137,7 @@ Docker images are configured using parameters passed at runtime (such as those a | :----: | --- | | `PUID=1000` | for UserID - 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). | | `VERSION=docker` | Set whether to update plex or not - see Application Setup section. | | `PLEX_CLAIM=` | Optionally you can obtain a claim token from https://plex.tv/claim and input here. Keep in mind that the claim tokens expire within 4 minutes. |