kopia lustrzana https://github.com/linuxserver/docker-documentation
Bot Updating Documentation
rodzic
00a47d7a9b
commit
83dc28d77d
|
@ -42,6 +42,23 @@ We support all of the official [environment variables](https://docs.phpmyadmin.n
|
||||||
|
|
||||||
For more information check out the [phpmyadmin documentation](https://www.phpmyadmin.net/docs/).
|
For more information check out the [phpmyadmin documentation](https://www.phpmyadmin.net/docs/).
|
||||||
|
|
||||||
|
## Read-Only Operation
|
||||||
|
|
||||||
|
This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/).
|
||||||
|
|
||||||
|
### Caveats
|
||||||
|
|
||||||
|
* Custom themes are not supported
|
||||||
|
|
||||||
|
## Non-Root Operation
|
||||||
|
|
||||||
|
This image can be run with a non-root user. For details please [read the docs](https://docs.linuxserver.io/misc/non-root/).
|
||||||
|
|
||||||
|
### Caveats
|
||||||
|
|
||||||
|
* `/tmp` must be mounted to tmpfs
|
||||||
|
* Custom themes are not supported
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
To help you get started creating a container from this image you can either use docker-compose or the docker cli.
|
To help you get started creating a container from this image you can either use docker-compose or the docker cli.
|
||||||
|
@ -117,6 +134,8 @@ Containers are configured using parameters passed at runtime (such as those abov
|
||||||
|
|
||||||
| Parameter | Function |
|
| Parameter | Function |
|
||||||
| :-----: | --- |
|
| :-----: | --- |
|
||||||
|
| `--read-only=true` | Run container with a read-only filesystem. Please [read the docs](https://docs.linuxserver.io/misc/read-only/). |
|
||||||
|
| `--user=1000:1000` | Run container with a non-root user. Please [read the docs](https://docs.linuxserver.io/misc/non-root/). |
|
||||||
|
|
||||||
## Environment variables from files (Docker secrets)
|
## Environment variables from files (Docker secrets)
|
||||||
|
|
||||||
|
@ -279,8 +298,64 @@ docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
|
||||||
|
|
||||||
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
||||||
|
|
||||||
|
To help with development, we generate this dependency graph.
|
||||||
|
|
||||||
|
??? info "Init dependency graph"
|
||||||
|
|
||||||
|
```d2
|
||||||
|
"phpmyadmin:latest": {
|
||||||
|
docker-mods
|
||||||
|
base {
|
||||||
|
fix-attr +\nlegacy cont-init
|
||||||
|
}
|
||||||
|
docker-mods -> base
|
||||||
|
legacy-services
|
||||||
|
custom services
|
||||||
|
init-services -> legacy-services
|
||||||
|
init-services -> custom services
|
||||||
|
custom services -> legacy-services
|
||||||
|
legacy-services -> ci-service-check
|
||||||
|
init-migrations -> init-adduser
|
||||||
|
init-nginx-end -> init-config
|
||||||
|
init-os-end -> init-config
|
||||||
|
init-config -> init-config-end
|
||||||
|
init-crontab-config -> init-config-end
|
||||||
|
init-phpmyadmin-config -> init-config-end
|
||||||
|
init-config -> init-crontab-config
|
||||||
|
init-mods-end -> init-custom-files
|
||||||
|
base -> init-envfile
|
||||||
|
init-os-end -> init-folders
|
||||||
|
init-php -> init-keygen
|
||||||
|
base -> init-migrations
|
||||||
|
init-config-end -> init-mods
|
||||||
|
init-mods-package-install -> init-mods-end
|
||||||
|
init-mods -> init-mods-package-install
|
||||||
|
init-samples -> init-nginx
|
||||||
|
init-version-checks -> init-nginx-end
|
||||||
|
init-adduser -> init-os-end
|
||||||
|
init-envfile -> init-os-end
|
||||||
|
init-keygen -> init-permissions
|
||||||
|
init-nginx -> init-php
|
||||||
|
init-nginx-end -> init-phpmyadmin-config
|
||||||
|
init-folders -> init-samples
|
||||||
|
init-custom-files -> init-services
|
||||||
|
init-permissions -> init-version-checks
|
||||||
|
init-services -> svc-cron
|
||||||
|
svc-cron -> legacy-services
|
||||||
|
init-services -> svc-nginx
|
||||||
|
svc-nginx -> legacy-services
|
||||||
|
init-services -> svc-php-fpm
|
||||||
|
svc-php-fpm -> legacy-services
|
||||||
|
}
|
||||||
|
Base Images: {
|
||||||
|
"baseimage-alpine-nginx:3.21" <- "baseimage-alpine:3.21"
|
||||||
|
}
|
||||||
|
"phpmyadmin:latest" <- Base Images
|
||||||
|
```
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
* **19.12.24:** - Rebase to Alpine 3.21.
|
||||||
* **27.05.24:** - Existing users should update their nginx confs to avoid http2 deprecation warnings.
|
* **27.05.24:** - Existing users should update their nginx confs to avoid http2 deprecation warnings.
|
||||||
* **24.05.24:** - Rebase to Alpine 3.20.
|
* **24.05.24:** - Rebase to Alpine 3.20.
|
||||||
* **28.12.23:** - Rebase to Alpine 3.19 with php 8.3.
|
* **28.12.23:** - Rebase to Alpine 3.19 with php 8.3.
|
||||||
|
|
Ładowanie…
Reference in New Issue