MicroK8s
DOCS
-
CUDA
How to build clusters with MicroK8s
How to install MySQL on docker
Prerequisites
-
docker, mysql-client
- Reference 2
- Reference 3
docker pull mysql
docker run --name=${make_container_name} -e MYSQL_ROOT_PASSWORD=${your_password} -d mysql:${version_that_you_want}
- you can check if it is success
sudo docker logs mysql_docker
- you can enter to container bash by
sudo docker exec -it ${container_name} bash
mysql -uroot -p