From 8c23cb469486ae370c4cd4bdb3dbf3bdc1b7a3ab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 16 Feb 2023 07:34:29 -0600 Subject: [PATCH] Bot Updating Documentation --- images/docker-phpmyadmin.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/images/docker-phpmyadmin.md b/images/docker-phpmyadmin.md index edb36bf0ac..cf6c7da503 100755 --- a/images/docker-phpmyadmin.md +++ b/images/docker-phpmyadmin.md @@ -31,7 +31,7 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\ | | arm64 | ✅ | arm64v8-\ | -| armhf| ✅ | arm32v7-\ | +| armhf | ✅ | arm32v7-\ | ## Application Setup @@ -57,7 +57,7 @@ services: environment: - PUID=1000 - PGID=1000 - - TZ=America/New_York + - TZ=Etc/UTC - PMA_ARBITRARY=1 #optional - PMA_ABSOLUTE_URI=https://phpmyadmin.example.com #optional volumes: @@ -74,13 +74,14 @@ docker run -d \ --name=phpmyadmin \ -e PUID=1000 \ -e PGID=1000 \ - -e TZ=America/New_York \ + -e TZ=Etc/UTC \ -e PMA_ARBITRARY=1 `#optional` \ -e PMA_ABSOLUTE_URI=https://phpmyadmin.example.com `#optional` \ -p 80:80 \ -v /path/to/appdata/config:/config \ --restart unless-stopped \ lscr.io/linuxserver/phpmyadmin:latest + ``` ## Parameters @@ -99,7 +100,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=America/New_York` | Specify a timezone to use EG America/New_York | +| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `PMA_ARBITRARY=1` | Set to `1` to allow you to connect to any server. Setting to `0` will only allow you to connect to specified hosts (See Application Setup) | | `PMA_ABSOLUTE_URI=https://phpmyadmin.example.com` | Set the URL you will use to access the web frontend |