circleci/mysql
MySQL is a widely used, open-source relational database management system (RDBMS).
100M+
Experimental CircleCI images for MySQL.
Extends the official image of MySQL to be friendly to use in CircleCI for testing.
The following is the customizations CircleCI applies in a Dockerfile
:
FROM mysql:latest
ENV MYSQL_ALLOW_EMPTY_PASSWORD=true \
MYSQL_DATABASE=circle_test \
MYSQL_HOST=127.0.0.1 \
MYSQL_ROOT_HOST=% \
MYSQL_USER=root
Aiming to have CircleCI extended images ease adoption of Docker and CircleCI. Once users are successful, we encourage users to build and customize their images to suite their individual project needs.
CircleCI is experimenting with this service image and we may change it in future in an incompatible way. Users should consider building their own image or locking the image digest in CircleCI configuration files.
If you have any problems with or questions about this image, please contact us on CircleCI Discuss Forum.
docker pull circleci/mysql