Skip to content

Instantly share code, notes, and snippets.

View Aruw's full-sized avatar

André Wada Gromann Aruw

View GitHub Profile
@Aruw
Aruw / Setup local MySQL (Docker).md
Last active October 7, 2023 23:48
Setup MySQL with Docker on local environment and configure DBeaver connection.

In the CLI pull MySQL image:

docker pull mysql/mysql-server:latest

docker run -d -p 3306:3306 
  --name your-container-name
  -e MYSQL_ROOT_PASSWORD=password 
  mysql/mysql-server:latest