Skip to content

Instantly share code, notes, and snippets.

@amalhanaja
Created September 16, 2022 17:35
Show Gist options
  • Select an option

  • Save amalhanaja/e051757ad5d48332bd8671cc60c3a194 to your computer and use it in GitHub Desktop.

Select an option

Save amalhanaja/e051757ad5d48332bd8671cc60c3a194 to your computer and use it in GitHub Desktop.
Docker Container .sh
docker run --rm \
--name=mysql-runtime \
-e MYSQL_ROOT_PASSWORD=password \
-e MYSQL_DATABASE=development \
-v ./data/mysql:/var/lib/mysql \
-p 3306:3306 \
-d mysql:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment