Connecting to a database

Overview

Prerequisites

Definitions

Install

docker run --name local-mysql -e MYSQL_ROOT_PASSWORD=password\
p 3306:3306 -d mysql:tag

This will allow you to connect using the following

Host: localhost
Port: 3306
User: root
Password: password

MySQL

MySQL