Docker for DevOps Engineers.
Day-16 #90daysofdevopschallenge

Nikhil Patil
π¨βπ» I love Linux & DevOps! π»
π§ Linuxπ¨βπ» | DevOps & Cloud Enthusiast | π Azure Admin | π οΈ Ansible | π Git | π³ Docker | π OpenLDAP | π₯οΈ System Admin | | π Jenkins π οΈ
π Pune
π I'm really into using and managing computers with Linux. I also like making things work smoothly and quickly.
π I work with Microsoft Azure, use tools like Ansible and Git to automate tasks, and make software run in containers with Docker.
π I handle access and security using OpenLDAP, and I'm all about keeping systems running smoothly.
π Exploring opportunities in cloud and DevOps.
π§ Get in touch: nikrpatil1997@gmail.com
π Docker
Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units called containers that have everything the software needs to run including libraries, system tools, code, and runtime. Using Docker, you can quickly deploy and scale applications into any environment and know your code will run.
π Task-1 Use the docker run command to start a new container and interact with it through the command line
docker run hello-world


π Task-2 Use the docker inspect command to view detailed information about a container or image.
docker inspect <container id>

π Task-3 Use the docker port command to list the port mappings for a container.
docker port <container id/name>

π Task-4 Use the docker stats command to view resource usage statistics for one or more containers.
docker stats <container id>

π Task-5 Use the docker top command to view the processes running inside a container.
docker top <container id>

π Task-6 Use the docker save command to save an image to a tar archive.
docker save -o nginx.tar docker.io/nginx
## -o = to write to a file, instead of STDOUT.

π Task -7 Use the docker load command to load an image from a tar archive.
docker load -i nginx.tar
## -i = --input string Read from tar archive file, instead of STDI





