admin管理员组

文章数量:1401199

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?

本文标签: docker composeTroubleshooting Podman images by comparing it with another versionStack Overflow