linuxwin.com - LinuxWin – Tutorials about everything

Example domain paragraphs

Tutorials about everything

Nod –> VM or phisical Machine Pod –> smallest component (one container per pod usually, but can be more) each pod gets an IP (internal, dynamic – K8s virt.net) Service –> Fix IP for Pod (internal or external) act as loadbalancer also, use less busy nod Ingress –> Entry point

docker pull <image_name> pulls image from repo docker run image_name:9.6 download and run with spec.version, run creates container from image. start just start it docker ps list all runninig containers docker images list all mages docker run -d <image_name> run in detached mode (background) docker stop <container-ID> stops container docker