spring-petclinic/docker-compose.yml
trisberg 6905e38c1f Make MySQL configuration files/docs consistent
- use petclinic as the db name and root password

Fixes #322
2018-05-14 11:00:34 +01:00

9 lines
184 B
YAML

mysql:
image: mysql:5.7
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=petclinic
- MYSQL_DATABASE=petclinic
volumes:
- "./conf.d:/etc/mysql/conf.d:ro"