components/docker/files/man/docker-diff.1
changeset 6468 af5d82385cd7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/docker/files/man/docker-diff.1	Wed Jul 20 17:19:20 2016 -0700
@@ -0,0 +1,67 @@
+.TH "DOCKER" "1" " Docker User Manuals" "Docker Community" "JUNE 2014"  ""
+
+
+.SH NAME
+.PP
+docker\-diff \- Inspect changes on a container's filesystem
+
+
+.SH SYNOPSIS
+.PP
+\fBdocker diff\fP
+[\fB\-\-help\fP]
+CONTAINER
+
+
+.SH DESCRIPTION
+.PP
+Inspect changes on a container's filesystem. You can use the full or
+shortened container ID or the container name set using
+\fBdocker run \-\-name\fP option.
+
+
+.SH OPTIONS
+.PP
+\fB\-\-help\fP
+  Print usage statement
+
+
+.SH EXAMPLES
+.PP
+Inspect the changes to on a nginx container:
+
+.PP
+.RS
+
+.nf
+# docker diff 1fdfd1f54c1b
+C /dev
+C /dev/console
+C /dev/core
+C /dev/stdout
+C /dev/fd
+C /dev/ptmx
+C /dev/stderr
+C /dev/stdin
+C /run
+A /run/nginx.pid
+C /var/lib/nginx/tmp
+A /var/lib/nginx/tmp/client\_body
+A /var/lib/nginx/tmp/fastcgi
+A /var/lib/nginx/tmp/proxy
+A /var/lib/nginx/tmp/scgi
+A /var/lib/nginx/tmp/uwsgi
+C /var/log/nginx
+A /var/log/nginx/access.log
+A /var/log/nginx/error.log
+
+.fi
+.RE
+
+
+.SH HISTORY
+.PP
+April 2014, Originally compiled by William Henry (whenry at redhat dot com)
+based on docker.com source material and internal work.
+June 2014, updated by Sven Dowideit 
+\[la][email protected]\[ra]