PhpMyAdmin server container (NO LONGER MAINTAINED)
6.1K
Note that this image is no longer supported.
MyAdmin server image. This image have the phpMyAdmin tool for administering MySQL databases.
To create the image, execute the following command in the docker-myadmin folder.
docker build -t cburki/myadmin .
The MySQL root password is required for the phpMyAdmin database and tables to be created. Use the MYSQL_PASSWORD environment variable to give the MySQL root password for setting up the image.
When you run the image, you will bind the port 80 for accessing the web interface. You will link this container with the MySQL database server container you would like to administer.
docker run \
--name myadmin \
-d \
-e MYSQL_PASSWORD=mysql_server_root_password \
-p 8081:80 \
--link mysql:db \
cburki/myadmin:latest
In the --link argument, mysql is the name of the MySQL server container and db is the alias to reach the MySQL server over the network.
The database administration interface could be reached with the following URL.
http://<ip_address>:8081/phpmyadmin
Content type
Image
Digest
sha256:11e4c46c9…
Size
-
Last updated
about 11 years ago
docker pull cburki/myadmin