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 2 in Stratos DC and re-tag (create new tag) this image as busybox:blog.

ssh steve@stapp02
docker pull busybox:musl
docker tag busybox:musl busybox:blog <-- just creates another tag pointing to the same image ID.
docker images busybox
REPOSITORY   TAG       IMAGE ID       CREATED         SIZE
busybox      blog      44f1048931f5   12 months ago   1.46MB
busybox      musl      44f1048931f5   12 months ago   1.46MB

Both tags (musl and blog) point to the same image ID.