MySQL quickly with docker
You just want MySQL up quickly to test against:
docker run --rm -e MYSQL_ROOT_PASSWORD=1234 -d -p 3306:3306 mysql:latest
mysql -h127.0.0.1 --protocol=TCP -uroot -p1234
CREATE DATABASE db_name;
- Run it.
- Log in.
- Create the test db