container-diff
container-diff copied to clipboard
container-diff: Diff your Docker containers
### Expected behavior `container-diff diff docker.server.com:5000/my/image:tag1 docker.server.com:5000/my/image:tag1` compares the two specified images ### Actual behavior The following error is printed: `http: server gave HTTP response to HTTPS client` ### Information...
The `daemon://` prefix does not result in local images being recognized / used. Possibly related to https://github.com/GoogleContainerTools/container-diff/issues/318 ### Expected behavior I want to diff two images - one that was...
### Expected behavior Some kind of analysis report(s) ### Actual behavior $ container-diff analyze a7fee75a1ef3 ERRO[0002] error retrieving image a7fee75a1ef3: UNAUTHORIZED: authentication required; [map[Type:repository Class: Name:library/a7fee75a1ef3 Action:pull]] ### Information -...
### Feature request: I would love for container-diff to be able to also run on ARM (on my Raspberry PI running Raspberry PI OS). Is this a feature that's currently...
Hi, container-diff tries to solve registry authentication via docker login or docker-credential-gcr but the tool can be used inside CICD pipeline so I think the "--registry-auth" and --registry-address could be...
cat Dockerfile ``` FROM centos:7 # Install python & git RUN \ yum install -y python36 python36-libs python36-devel python36-pip git && \ yum clean all # Upgrade pip RUN pip3.6...
Hi, Container_diff analyse or check the differences between two images from the tag name but sometimes we may need to check the differences between the two digest versions. container-diff analyze...
Ultimately it would be good if we could compare the labels between images. My use case is: I'm rewriting a very big Dockerfile here, and I don't want to introduce...
It would be very helpful if this tool could compare the environment variables of the containers.
We often use container-diff to inspect images for reproducible Docker builds (the same Dockerfile with the same external dependency versions should yield the same digest) and find changes / files...