Docker tagging best practices Docker best practice: Version Docker images to know which version of your code is running and to simplify rollbacks. Avoid the latest tag. Examples: docker build -t web-prod-a072c4e-0.1.4 .
Docker best practice:
Version Docker images to know which version of your code is running and to simplify rollbacks. Avoid the latest tag.
latest
Examples:
docker build -t web-prod-a072c4e-0.1.4 .