Make mysql configuration more first class

This commit is contained in:
Dave Syer 2016-12-05 21:50:29 +00:00
parent 8b76a54814
commit 0c7db646ef
4 changed files with 26 additions and 7 deletions

9
docker-compose.yml Normal file
View file

@ -0,0 +1,9 @@
mysql:
image: mysql
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=test
volumes:
- "./conf.d:/etc/mysql/conf.d:ro"