github.com/stchris/docker@v1.4.2-0.20150106053530-1510a324dbd5/docs/man/docker-diff.1.md (about)

     1  % DOCKER(1) Docker User Manuals
     2  % Docker Community
     3  % JUNE 2014
     4  # NAME
     5  docker-diff - Inspect changes on a container's filesystem
     6  
     7  # SYNOPSIS
     8  **docker diff**
     9  CONTAINER
    10  
    11  # DESCRIPTION
    12  Inspect changes on a container's filesystem. You can use the full or
    13  shortened container ID or the container name set using
    14  **docker run --name** option.
    15  
    16  # OPTIONS
    17  There are no available options.
    18  
    19  # EXAMPLES
    20  Inspect the changes to on a nginx container:
    21  
    22      # docker diff 1fdfd1f54c1b
    23      C /dev
    24      C /dev/console
    25      C /dev/core
    26      C /dev/stdout
    27      C /dev/fd
    28      C /dev/ptmx
    29      C /dev/stderr
    30      C /dev/stdin
    31      C /run
    32      A /run/nginx.pid
    33      C /var/lib/nginx/tmp
    34      A /var/lib/nginx/tmp/client_body
    35      A /var/lib/nginx/tmp/fastcgi
    36      A /var/lib/nginx/tmp/proxy
    37      A /var/lib/nginx/tmp/scgi
    38      A /var/lib/nginx/tmp/uwsgi
    39      C /var/log/nginx
    40      A /var/log/nginx/access.log
    41      A /var/log/nginx/error.log
    42  
    43  
    44  # HISTORY
    45  April 2014, Originally compiled by William Henry (whenry at redhat dot com)
    46  based on docker.com source material and internal work.
    47  June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>