├── .gitignore ├── Dockerfile ├── etc └── my_init.d │ └── 99_mysql_setup.sh └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ._* 3 | .vagrant 4 | *~ 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/docker-mysql/HEAD/Dockerfile -------------------------------------------------------------------------------- /etc/my_init.d/99_mysql_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/docker-mysql/HEAD/etc/my_init.d/99_mysql_setup.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/docker-mysql/HEAD/readme.md --------------------------------------------------------------------------------