Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 780 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 780 Bytes

docker-mysql

Build Status

A Dockerfile that installs a mysql server with multiple databases. databases and users will generate dynamically with starting or stopping or killing a container.

Usage

To run it:

$ docker run -d -v /var/run/docker.sock:/var/run/docker.sock -e MYSQL_ROOT_PASSWORD="password" nanofi/mysql

Start any containers with env vars:

  • MYSQL_DB_NAME; database name
  • MYSQL_DB_USER; username
  • MYSQL_DB_PASS; password

If MYSQL_DB_NAME presences, the container creates a database. If MYSQL_DB_NAME, MYSQL_DB_USER and MYSQL_DB_PASS presence, the container creates an user which has all privilege to the database.