├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── Dockerfile ├── Dockerfile-5.5 ├── Dockerfile-5.5-arm32v6 ├── LICENSE ├── Makefile ├── README.md ├── entrypoint-5.5.sh └── my-small.cnf /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /testSuite.sh 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-5.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/Dockerfile-5.5 -------------------------------------------------------------------------------- /Dockerfile-5.5-arm32v6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/Dockerfile-5.5-arm32v6 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/README.md -------------------------------------------------------------------------------- /entrypoint-5.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/entrypoint-5.5.sh -------------------------------------------------------------------------------- /my-small.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarms/mysql/HEAD/my-small.cnf --------------------------------------------------------------------------------