#docker-ubuntu-mysql Dedicated mysql container, intended for exposure to another container.
This mysql container is based on ubuntu:trusty, and has the following in addition:
Simple, not exposed:
docker run -d --name="mysql-run" \
-e "MYSQL_PASSWORD=password" \
vasansr/ubuntu-mysql
Exposed:
docker run -d --name="mysql-run" \
-e "MYSQL_PASSWORD=password" \
-p 3306:3306 \
vasansr/ubuntu-mysql
Explanation:
Content type
Image
Digest
sha256:1b8f709de…
Size
95.9 MB
Last updated
about 6 years ago
docker pull vasansr/ubuntu-mysql