100-Days-Of-DevOps-Challenge-KodeKloud

Docker Pull Images

Nautilus project developers are planning to start testing on a new project. As per their meeting with the DevOps team, they want to test containerized environment application features. As per details shared with DevOps team, we need to accomplish the following task:

a. Pull busybox:musl image on App Server 3 in Stratos DC and re-tag (create new tag) this image as busybox:blog.

Steps

  1. Pull Image

     docker pull busybox:musl
    
  2. Create new Tag

     docker tag busybox:musl busybox:blog
    

Good to Know?

Docker Image Management

Image Operations

Tagging Strategy

BusyBox Image