Skip to content

Instantly share code, notes, and snippets.

@masiuchi
Created March 12, 2018 08:22
Show Gist options
  • Save masiuchi/0bd6a1edce9fb7290494f3f9c5c9b736 to your computer and use it in GitHub Desktop.
Save masiuchi/0bd6a1edce9fb7290494f3f9c5c9b736 to your computer and use it in GitHub Desktop.
mysql server for mt test.
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