docker/vendor/github.com/containerd/continuity
John Howard e57b2a8066 Bump containerd to d97a907f
Signed-off-by: John Howard <jhoward@microsoft.com>
2018-09-18 10:26:13 -07:00
..
devices
driver vendor: bump containerd/continuity 2018-09-06 15:24:22 -07:00
fs vendor: bump containerd/continuity 2018-09-06 15:24:22 -07:00
pathdriver
proto Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
syscallx Update containerd to 1.1 2018-06-04 15:37:03 -07:00
sysx vendor: bump containerd/continuity 2018-09-06 15:24:22 -07:00
LICENSE
README.md
context.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
digests.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
groups_unix.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
hardlinks.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
hardlinks_unix.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
hardlinks_windows.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
ioutils.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
manifest.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
resource.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
resource_unix.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
resource_windows.go Bump containerd to d97a907f 2018-09-18 10:26:13 -07:00
vendor.conf vendor: bump containerd/continuity 2018-09-06 15:24:22 -07:00

README.md

continuity

GoDoc Build Status

A transport-agnostic, filesystem metadata manifest system

This project is a staging area for experiments in providing transport agnostic metadata storage.

Please see https://github.com/opencontainers/specs/issues/11 for more details.

Manifest Format

A continuity manifest encodes filesystem metadata in Protocol Buffers. Please refer to proto/manifest.proto.

Usage

Build:

$ make

Create a manifest (of this repo itself):

$ ./bin/continuity build . > /tmp/a.pb

Dump a manifest:

$ ./bin/continuity ls /tmp/a.pb
...
-rw-rw-r--      270 B   /.gitignore
-rw-rw-r--      88 B    /.mailmap
-rw-rw-r--      187 B   /.travis.yml
-rw-rw-r--      359 B   /AUTHORS
-rw-rw-r--      11 kB   /LICENSE
-rw-rw-r--      1.5 kB  /Makefile
...
-rw-rw-r--      986 B   /testutil_test.go
drwxrwxr-x      0 B     /version
-rw-rw-r--      478 B   /version/version.go

Verify a manifest:

$ ./bin/continuity verify . /tmp/a.pb

Break the directory and restore using the manifest:

$ chmod 777 Makefile
$ ./bin/continuity verify . /tmp/a.pb
2017/06/23 08:00:34 error verifying manifest: resource "/Makefile" has incorrect mode: -rwxrwxrwx != -rw-rw-r--
$ ./bin/continuity apply . /tmp/a.pb
$ stat -c %a Makefile
664
$ ./bin/continuity verify . /tmp/a.pb

Contribution Guide

Building Proto Package

If you change the proto file you will need to rebuild the generated Go with go generate.

$ go generate ./proto