1podman-image-diff(1)()                                  podman-image-diff(1)()
2
3
4

NAME

6       podman-image-diff - Inspect changes on an image's filesystem
7
8

SYNOPSIS

10       podman image diff [options] name
11
12

DESCRIPTION

14       Displays  changes  on a container or image's filesystem.  The container
15       or image will be compared to its parent layer
16
17

OPTIONS

19   --format
20       Alter the output into a different format.  The only  valid  format  for
21       diff is json.
22
23

EXAMPLE

25              # podman diff redis:old redis:alpine
26              C /usr
27              C /usr/local
28              C /usr/local/bin
29              A /usr/local/bin/docker-entrypoint.sh
30
31
32
33              # podman diff --format json redis:old redis:alpine
34              {
35                "changed": [
36                  "/usr",
37                  "/usr/local",
38                  "/usr/local/bin"
39                ],
40                "added": [
41                  "/usr/local/bin/docker-entrypoint.sh"
42                ]
43              }
44
45
46

SEE ALSO

48       podman(1)
49
50

HISTORY

52       August   2017,  Originally  compiled  by  Ryan  Cole  rycole@redhat.com
53       ⟨mailto:rycole@redhat.com⟩
54
55
56
57                                                        podman-image-diff(1)()
Impressum