I have recently took over a project with a Podman image that is not working if it is deployed with the latest version tag.
version: '3.7'
services:
nginx:
build:
context: infrastructure
dockerfile: nginx_dockerfile
image: __(ACR)__/__(nginx_image_name)__:__(nginx_image_version)__
However, there is an old version of the image that works.
version: '3.7'
services:
nginx:
build:
context: infrastructure
dockerfile: nginx_dockerfile
image: __(ACR)__/__(nginx_image_name)__:20250104.2
I can't use the latter image for future developments. Is there a way to do a diff between the two images to troubleshoot the error?
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744220482a4563756.html
评论列表(0条)