Docker Certification Training Course : Lecture 7
Docker Enterprise Edition (Docker EE) Docker EE brings GUI (Graphics User Interface) capability in Docker world. Docker EE GUI is often called UCP, it is a …
Docker Certification Training Course : Lecture 6
docker run –dns 8.8.4.4 nicolaka/netshoot nslookup google.com – example of command using given dns to solve name (google.com in this case) to IP address, instead of …
Docker Certification Training Course : Lecture 5
Docker Swarm Scaling containers using Docker Compose api has flaws – all containers are created on single machine, which makes using them too vulnerable for issues …
Docker Certification Training Course
Lecture 2 Lecture 3 Lecture 4 Lecture 5 Lecture 6 Lecture 7
Docker Certification Training Course : Lecture 4
Multi-stage Builds Docker Images should be flexible, not bulky. But, for example, java application needs : Operating System Java installed IDE (Intellij IDEA, Eclipse, Netbeans etc) …
Docker Certification Training Course : Lecture 3
DockerFile commands are : FROM is the first command in the DockerFile. Its syntax is FROM <image name>. RUN <some Unix command> – DockerFile command that …
Docker Certification Training Course : Lecture 2
docker exec -it <running container id> <name of command shell (bash, sh, ksh)> – command used for entering the shell of the running container (for entering …
Kubernetes Certification Training Course : Lecture 8
In Docker, any running container has its own ip address. Docker follows CNM (Container Network Model) where networking is part of Docker software. But in Kubernetes …
Kubernetes Certification Training Course : Lecture 7
What is Roles and Cluster Roles in Kubernetes ? Roles in Kubernetes are confined to namespace, Cluster Roles are not. kubectl api-resoures command shows all resources …
Kubernetes Certification Training Course
Lecture 1 Lecture 2 Lecture 3 Lecture 4 Lecture 5 Lecture 6 Lecture 7 Lecture 8