最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

docker compose - Troubleshooting Podman images by comparing it with another version - Stack Overflow

programmeradmin5浏览0评论

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?

发布评论

评论列表(0)

  1. 暂无评论