Bot Updating Documentation

pull/90/head
LinuxServer-CI 2023-02-16 07:34:29 -06:00
rodzic a590d6b35a
commit 11df74806d
1 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -31,7 +31,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
@ -57,7 +57,7 @@ services:
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=America/New_York - TZ=Etc/UTC
- PMA_ARBITRARY=1 #optional - PMA_ARBITRARY=1 #optional
- PMA_ABSOLUTE_URI=https://phpmyadmin.example.com #optional - PMA_ABSOLUTE_URI=https://phpmyadmin.example.com #optional
volumes: volumes:
@ -74,13 +74,14 @@ docker run -d \
--name=phpmyadmin \ --name=phpmyadmin \
-e PUID=1000 \ -e PUID=1000 \
-e PGID=1000 \ -e PGID=1000 \
-e TZ=America/New_York \ -e TZ=Etc/UTC \
-e PMA_ARBITRARY=1 `#optional` \ -e PMA_ARBITRARY=1 `#optional` \
-e PMA_ABSOLUTE_URI=https://phpmyadmin.example.com `#optional` \ -e PMA_ABSOLUTE_URI=https://phpmyadmin.example.com `#optional` \
-p 80:80 \ -p 80:80 \
-v /path/to/appdata/config:/config \ -v /path/to/appdata/config:/config \
--restart unless-stopped \ --restart unless-stopped \
lscr.io/linuxserver/phpmyadmin:latest lscr.io/linuxserver/phpmyadmin:latest
``` ```
## Parameters ## 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 | | `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=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_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 | | `PMA_ABSOLUTE_URI=https://phpmyadmin.example.com` | Set the URL you will use to access the web frontend |