Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 django 应用程序的前端显示我的应用程序 docker 映像的最新标记,以便用户看到与 docker 映像中标记的应用程序版本相同的应用程序版本。关于如何实现这一目标的任何想法?
从容器内部读取标签并不是那么简单。但我建议在构建映像时将其作为build-arg容器环境发送。
build-arg
docker build --build-arg TAG=v0.0.1 .
另请参阅:将标记作为 Docker 容器内的环境变量访问