Day 20 Docker For DevOps Engineers!!
Let's Learn docker commands:
Create and run a container in the background
$ docker run -d -p 80:80 docker/getting-started
-d - Run the container in detached mode
-p 80:80 - Map port 80 to port 80 in the container
docker/getting-started - The ima...
madhuripdevops.hashnode.dev5 min read