diff --git a/CI_CD_PIPELINE_SETUP_GUIDE.md b/CI_CD_PIPELINE_SETUP_GUIDE.md index a8f1e98..4ac85e5 100644 --- a/CI_CD_PIPELINE_SETUP_GUIDE.md +++ b/CI_CD_PIPELINE_SETUP_GUIDE.md @@ -749,13 +749,13 @@ docker build -f /tmp/test.Dockerfile -t YOUR_CI_CD_IP/APP_NAME/test:latest /tmp # Push to Harbor (requires authentication) docker push YOUR_CI_CD_IP/APP_NAME/test:latest -# Verify image is in Harbor -curl -k https://localhost/v2/_catalog - # Test public pull (no authentication required) docker logout YOUR_CI_CD_IP docker pull YOUR_CI_CD_IP/APP_NAME/test:latest +# Verify the image was pulled successfully +docker images | grep APP_NAME/test + # Clean up test image docker rmi YOUR_CI_CD_IP/APP_NAME/test:latest ```