Covered Docker concepts, architecture, components, advantages, and limitations. Understood how Docker differs from traditional virtualization.
Learned and practiced essential commands: docker run
, ps
, rm
, images
, rmi
, pull
, exec
, etc.
Understood image lifecycle: pulling, tagging, and removing. Also explored Dockerfile structure and key instructions like FROM, CMD, COPY.
Learned Docker volumes for data persistence and practiced exposing ports and container-networking for app communication.
Here are my personal notes on Docker. I use them to quickly revise commands and concepts.
π View DOCKER Notes FlipbookIf you'd like a PDF version, feel free to contact me via the Contact section.
Built a Docker image for my DevOps portfolio website and deployed it using a custom Dockerfile and container lifecycle commands.
View Project on DockerHubPracticed Docker fundamentals: pulled images, exposed containers, mounted volumes, built custom images, and explored container commands.
View Project