Skip to content

The repo contains study materials for preparing for the Certified Kubernetes Administrator certification exam. Relevant blogs are also available in https://www.goglides.dev IT community.

Notifications You must be signed in to change notification settings

pandeybk/certified-kubernetes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 

Repository files navigation

If you find a bug in this project, please report it to the https://www.goglides.dev/ forum.

Run mysql docker container with volume mount.

podman volume create mysql-data
podman run -d -e MYSQL_ROOT_PASSWORD=root -p 3306:3306 -v mysql-data:/var/lib/mysql mysql