Skip to content

Instantly share code, notes, and snippets.

@trungpv1601
Last active May 7, 2018 05:50
Show Gist options
  • Save trungpv1601/4e6478adf7181659c74b68135e75f2ff to your computer and use it in GitHub Desktop.
Save trungpv1601/4e6478adf7181659c74b68135e75f2ff to your computer and use it in GitHub Desktop.
Docker command

MYSQL

docker run --name mysql -e MYSQL_ROOT_PASSWORD=root -p 3306:3306 --restart=always -d mysql --default-authentication-plugin=mysql_native_password

PHPMYADMIN

  • mysql <= Name contatiner mysql
docker run --name phpmyadmin -d --link mysql:db -p 8080:80 --restart=always phpmyadmin/phpmyadmin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment