docker tag my-app:latest my-repo/my-app:latest

Meaning: Tags an image with a new name. Usage: To add a new tag to an existing image for easier identification or for pushing to a repository. Example: docker tag my-app:latest my-repo/my-app:latest tags my-app:latest as my-repo/my-app:latest.

-f (Force)