Created
March 12, 2018 08:22
-
-
Save masiuchi/0bd6a1edce9fb7290494f3f9c5c9b736 to your computer and use it in GitHub Desktop.
mysql server for mt test.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
mysql: | |
image: mysql:5.7.16 | |
ports: | |
- '3306:3306' | |
environment: | |
- MYSQL_DATABASE=mt_test | |
- MYSQL_USER=mt | |
- MYSQL_PASSWORD=password | |
- MYSQL_ALLOW_EMPTY_PASSWORD=yes | |
# $ mysql -uroot -h 127.0.0.1 | |
# mysql> set password for mt=password(''); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment