Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hi there,
Indeed, overwriting tags when using Docker images can cause problems, as you have experienced.
Once an image with a specific tag is pulled and cached, subsequent pulls may not retrieve the latest version of that tag unless the cache is cleared or forced to update.
Best practices are to avoid overwriting tags, especially in production environments, and to use unique tags for each release, even incremental ones. That way, you can avoid confusion and unexpected behaviors.
However, in your current situation, you can try the following:
image:7.0, use the digest directly, for example image@sha256:<digest>.7.0 tag, use a distinctly different tag temporarily, deploy your application, and then switch back to 7.0. This may force the platform to refresh the image from the repository.Hope that helps!
- Bobby.