phpMyAdmin docker image for ARM armhf architecture
1M+
phpMyAdmin docker image for ARM armhf architecture
Build Source : https://github.com/haotseng/armhf_dockerfiles
docker build -t ebspace/armhf-phpmyadmin:latest .
First you need to run MySQL or MariaDB server in Docker, and this image need link a running mysql instance container:
docker run --name myadmin -d --link mysql_db_server:db -p 8080:80 ebspace/armhf-phpmyadmin
You can specify MySQL host in the PMA_HOST environment variable. You can also
use PMA_PORT to specify port of the server in case it's not the default one:
docker run --name myadmin -d -e PMA_HOST=dbhost -p 8080:80 ebspace/armhf-phpmyadmin
You can use arbitrary servers by adding ENV variable PMA_ARBITRARY=1 to the startup command:
docker run --name myadmin -d --link mysql_db_server:db -p 8080:80 -e PMA_ARBITRARY=1 ebspace/armhf-phpmyadmin
You can add your own custom config.inc.php settings (such as Configuration Storage setup) by creating a file named "config.user.inc.php" with the various user defined settings in it, and then linking it into the container using:
docker run --name myadmin -d --link mysql_db_server:db -p 8080:80 -v /local_dir/config.user.inc.php:/etc/phpmyadmin/config.user.inc.php ebspace/armhf-phpmyadmin
PMA_ARBITRARY - when set to 1 connection to the arbitrary server will be allowedPMA_HOST - define address/host name of the MySQL serverPMA_VERBOSE - define verbose name of the MySQL serverPMA_PORT - define port of the MySQL serverPMA_HOSTS - define comma separated list of address/host names of the MySQL serversPMA_VERBOSES - define comma separated list of verbose names of the MySQL serversPMA_USER and PMA_PASSWORD - define username to use for config authentication methodPMA_ABSOLUTE_URI - define user-facing URISometimes it is necessary to upload big dump which doesn't fit into default limit 128M. You can specify alternative size via environment variable UPLOAD_SIZE
docker run --rm --link mysql_db_server:db -p 8080:80 -e UPLOAD_SIZE=1G ebspace/armhf-phpmyadmin
All examples will bring you phpMyAdmin on http://your_host_ip:8080/phpmyadmin
Content type
Image
Digest
Size
113.8 MB
Last updated
almost 10 years ago
docker pull ebspace/armhf-phpmyadmin