Day 16: Docker for DevOps Engineers.

ยท

2 min read

Day 16: Docker for DevOps Engineers.

Table of contents

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.

Docker Commands:

  1. docker run: Use the docker run command to start a new container and interact with it through the command line.

  1. docker inspect: Use the docker inspect command to view detailed information about a container or image.

  1. docker port: Use the docker port command to list the port mappings for a container.

    Eg: docker port CONTAINER [PRIVATE_PORT[/PROTO]]

  2. docker stats: Use the docker stats command to view resource usage statistics for one or more containers.

  1. docker top: Use the docker top command to view the processes running inside a container.

  2. docker save: Use the docker save command to save an image to a tar archive.

  1. docker load: Use the docker load command to load an image from a tar archive.

I hope you like my blog..!!

Stay Connected with me for more interesting articles on DevOps, if you like my blog follow me on Hashnode and Linkedin (https://www.linkedin.com/in/som-shanker-pandey/

Did you find this article valuable?

Support Som Pandey's blog by becoming a sponsor. Any amount is appreciated!

ย