├── .gitignore ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── github.com │ ├── Sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── examples │ │ │ ├── basic │ │ │ │ └── basic.go │ │ │ └── hook │ │ │ │ └── hook.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── formatters │ │ │ └── logstash │ │ │ │ └── logstash.go │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ └── syslog │ │ │ │ ├── README.md │ │ │ │ └── syslog.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_solaris.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── coreos │ │ └── go-systemd │ │ │ ├── LICENSE │ │ │ └── activation │ │ │ ├── files.go │ │ │ ├── listeners.go │ │ │ └── packetconns.go │ ├── docker │ │ ├── docker │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── client │ │ │ │ │ ├── attach.go │ │ │ │ │ ├── build.go │ │ │ │ │ ├── cli.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── cp.go │ │ │ │ │ ├── create.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── events.go │ │ │ │ │ ├── exec.go │ │ │ │ │ ├── export.go │ │ │ │ │ ├── formatter │ │ │ │ │ │ ├── custom.go │ │ │ │ │ │ └── formatter.go │ │ │ │ │ ├── hijack.go │ │ │ │ │ ├── history.go │ │ │ │ │ ├── images.go │ │ │ │ │ ├── import.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── inspect.go │ │ │ │ │ ├── inspect │ │ │ │ │ │ ├── inspector.go │ │ │ │ │ │ ├── inspector_go14.go │ │ │ │ │ │ └── inspector_go15.go │ │ │ │ │ ├── kill.go │ │ │ │ │ ├── load.go │ │ │ │ │ ├── login.go │ │ │ │ │ ├── logout.go │ │ │ │ │ ├── logs.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── pause.go │ │ │ │ │ ├── port.go │ │ │ │ │ ├── ps.go │ │ │ │ │ ├── pull.go │ │ │ │ │ ├── push.go │ │ │ │ │ ├── rename.go │ │ │ │ │ ├── restart.go │ │ │ │ │ ├── rm.go │ │ │ │ │ ├── rmi.go │ │ │ │ │ ├── run.go │ │ │ │ │ ├── save.go │ │ │ │ │ ├── search.go │ │ │ │ │ ├── start.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── stop.go │ │ │ │ │ ├── tag.go │ │ │ │ │ ├── top.go │ │ │ │ │ ├── trust.go │ │ │ │ │ ├── unpause.go │ │ │ │ │ ├── update.go │ │ │ │ │ ├── utils.go │ │ │ │ │ ├── utils_unix.go │ │ │ │ │ ├── utils_windows.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── volume.go │ │ │ │ │ └── wait.go │ │ │ │ ├── common.go │ │ │ │ ├── fixtures │ │ │ │ │ └── keyfile │ │ │ │ └── server │ │ │ │ │ ├── httputils │ │ │ │ │ ├── form.go │ │ │ │ │ └── httputils.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── profiler.go │ │ │ │ │ ├── router │ │ │ │ │ ├── build │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ └── build_routes.go │ │ │ │ │ ├── container │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── container.go │ │ │ │ │ │ ├── container_routes.go │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ └── inspect.go │ │ │ │ │ ├── local │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ └── local.go │ │ │ │ │ ├── network │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── filter.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ └── network_routes.go │ │ │ │ │ ├── router.go │ │ │ │ │ ├── system │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── system.go │ │ │ │ │ │ └── system_routes.go │ │ │ │ │ └── volume │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── volume.go │ │ │ │ │ │ └── volume_routes.go │ │ │ │ │ ├── router_swapper.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_unix.go │ │ │ │ │ └── server_windows.go │ │ │ ├── contrib │ │ │ │ ├── docker-engine-selinux │ │ │ │ │ └── LICENSE │ │ │ │ └── syntax │ │ │ │ │ └── vim │ │ │ │ │ └── LICENSE │ │ │ ├── pkg │ │ │ │ ├── authorization │ │ │ │ │ ├── api.go │ │ │ │ │ ├── authz.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── response.go │ │ │ │ ├── ioutils │ │ │ │ │ ├── bytespipe.go │ │ │ │ │ ├── fmt.go │ │ │ │ │ ├── multireader.go │ │ │ │ │ ├── readers.go │ │ │ │ │ ├── scheduler.go │ │ │ │ │ ├── scheduler_gccgo.go │ │ │ │ │ ├── temp_unix.go │ │ │ │ │ ├── temp_windows.go │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ └── writers.go │ │ │ │ ├── mflag │ │ │ │ │ └── LICENSE │ │ │ │ ├── plugins │ │ │ │ │ ├── client.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── pluginrpc-gen │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ └── foo.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ └── template.go │ │ │ │ │ └── plugins.go │ │ │ │ ├── symlink │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ └── LICENSE.BSD │ │ │ │ ├── system │ │ │ │ │ ├── chtimes.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── events_windows.go │ │ │ │ │ ├── filesys.go │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ ├── lstat.go │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ ├── meminfo.go │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ ├── mknod.go │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ ├── path_unix.go │ │ │ │ │ ├── path_windows.go │ │ │ │ │ ├── stat.go │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ ├── stat_unsupported.go │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ ├── umask.go │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ ├── utimes_darwin.go │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ └── version │ │ │ │ │ └── version.go │ │ │ └── vendor │ │ │ │ └── src │ │ │ │ ├── github.com │ │ │ │ ├── Azure │ │ │ │ │ └── go-ansiterm │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── BurntSushi │ │ │ │ │ └── toml │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ └── cmd │ │ │ │ │ │ ├── toml-test-decoder │ │ │ │ │ │ └── COPYING │ │ │ │ │ │ ├── toml-test-encoder │ │ │ │ │ │ └── COPYING │ │ │ │ │ │ └── tomlv │ │ │ │ │ │ └── COPYING │ │ │ │ ├── Graylog2 │ │ │ │ │ └── go-gelf │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── RackSec │ │ │ │ │ └── srslog │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── Sirupsen │ │ │ │ │ └── logrus │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── agl │ │ │ │ │ └── ed25519 │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── armon │ │ │ │ │ └── go-metrics │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── aws │ │ │ │ │ └── aws-sdk-go │ │ │ │ │ │ └── LICENSE.txt │ │ │ │ ├── boltdb │ │ │ │ │ └── bolt │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── coreos │ │ │ │ │ ├── etcd │ │ │ │ │ │ └── LICENSE │ │ │ │ │ └── go-systemd │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── deckarep │ │ │ │ │ └── golang-set │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── docker │ │ │ │ │ ├── distribution │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── engine-api │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── go-connections │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── go-units │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── go │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── libkv │ │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ │ └── LICENSE.docs │ │ │ │ │ ├── libnetwork │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── libtrust │ │ │ │ │ │ └── LICENSE │ │ │ │ │ └── notary │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── notarymysql │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ └── tuf │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── fluent │ │ │ │ │ └── fluent-logger-golang │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── go-check │ │ │ │ │ └── check │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── godbus │ │ │ │ │ └── dbus │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── golang │ │ │ │ │ └── protobuf │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── gorilla │ │ │ │ │ ├── context │ │ │ │ │ │ └── LICENSE │ │ │ │ │ └── mux │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── hashicorp │ │ │ │ │ ├── consul │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── website │ │ │ │ │ │ │ └── LICENSE.md │ │ │ │ │ ├── go-msgpack │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── memberlist │ │ │ │ │ │ └── LICENSE │ │ │ │ │ └── serf │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── website │ │ │ │ │ │ └── LICENSE.md │ │ │ │ ├── imdario │ │ │ │ │ └── mergo │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── jfrazelle │ │ │ │ │ └── go │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── kr │ │ │ │ │ └── pty │ │ │ │ │ │ └── License │ │ │ │ ├── mattn │ │ │ │ │ └── go-sqlite3 │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── microsoft │ │ │ │ │ └── hcsshim │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── miekg │ │ │ │ │ ├── dns │ │ │ │ │ │ ├── COPYRIGHT │ │ │ │ │ │ └── LICENSE │ │ │ │ │ └── pkcs11 │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── mistifyio │ │ │ │ │ └── go-zfs │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── opencontainers │ │ │ │ │ ├── runc │ │ │ │ │ │ └── LICENSE │ │ │ │ │ └── specs │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── samuel │ │ │ │ │ └── go-zookeeper │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── seccomp │ │ │ │ │ └── libseccomp-golang │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── syndtr │ │ │ │ │ └── gocapability │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── tchap │ │ │ │ │ └── go-patricia │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── tinylib │ │ │ │ │ └── msgp │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── ugorji │ │ │ │ │ └── go │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── vaughan0 │ │ │ │ │ └── go-ini │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── vbatts │ │ │ │ │ └── tar-split │ │ │ │ │ │ └── LICENSE │ │ │ │ └── vishvananda │ │ │ │ │ ├── netlink │ │ │ │ │ └── LICENSE │ │ │ │ │ └── netns │ │ │ │ │ └── LICENSE │ │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ └── net │ │ │ │ │ └── LICENSE │ │ │ │ ├── google.golang.org │ │ │ │ └── grpc │ │ │ │ │ └── LICENSE │ │ │ │ └── gopkg.in │ │ │ │ └── fsnotify.v1 │ │ │ │ └── LICENSE │ │ ├── engine-api │ │ │ ├── LICENSE │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ ├── container_attach.go │ │ │ │ ├── container_commit.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_inspect.go │ │ │ │ ├── container_list.go │ │ │ │ ├── container_remove.go │ │ │ │ ├── container_rename.go │ │ │ │ ├── container_restart.go │ │ │ │ ├── container_start.go │ │ │ │ ├── container_stats.go │ │ │ │ ├── container_stop.go │ │ │ │ ├── container_top.go │ │ │ │ ├── container_unpause.go │ │ │ │ ├── container_update.go │ │ │ │ ├── copy.go │ │ │ │ ├── diff.go │ │ │ │ ├── errors.go │ │ │ │ ├── events.go │ │ │ │ ├── exec.go │ │ │ │ ├── export.go │ │ │ │ ├── hijack.go │ │ │ │ ├── history.go │ │ │ │ ├── image_build.go │ │ │ │ ├── image_create.go │ │ │ │ ├── image_import.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_list.go │ │ │ │ ├── image_load.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_remove.go │ │ │ │ ├── image_save.go │ │ │ │ ├── image_search.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── info.go │ │ │ │ ├── interface.go │ │ │ │ ├── kill.go │ │ │ │ ├── login.go │ │ │ │ ├── logs.go │ │ │ │ ├── network.go │ │ │ │ ├── pause.go │ │ │ │ ├── privileged.go │ │ │ │ ├── request.go │ │ │ │ ├── resize.go │ │ │ │ ├── version.go │ │ │ │ ├── volume.go │ │ │ │ └── wait.go │ │ │ └── types │ │ │ │ ├── auth.go │ │ │ │ ├── blkiodev │ │ │ │ └── blkio.go │ │ │ │ ├── client.go │ │ │ │ ├── configs.go │ │ │ │ ├── container │ │ │ │ ├── config.go │ │ │ │ ├── host_config.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ └── hostconfig_windows.go │ │ │ │ ├── events │ │ │ │ └── events.go │ │ │ │ ├── filters │ │ │ │ └── parse.go │ │ │ │ ├── network │ │ │ │ └── network.go │ │ │ │ ├── registry │ │ │ │ └── registry.go │ │ │ │ ├── seccomp.go │ │ │ │ ├── stats.go │ │ │ │ ├── strslice │ │ │ │ └── strslice.go │ │ │ │ ├── time │ │ │ │ └── timestamp.go │ │ │ │ ├── types.go │ │ │ │ └── versions │ │ │ │ ├── README.md │ │ │ │ ├── v1p19 │ │ │ │ └── types.go │ │ │ │ └── v1p20 │ │ │ │ └── types.go │ │ ├── go-connections │ │ │ ├── LICENSE │ │ │ ├── nat │ │ │ │ ├── nat.go │ │ │ │ ├── parse.go │ │ │ │ └── sort.go │ │ │ ├── sockets │ │ │ │ ├── README.md │ │ │ │ ├── tcp_socket.go │ │ │ │ └── unix_socket.go │ │ │ └── tlsconfig │ │ │ │ ├── config.go │ │ │ │ ├── config_client_ciphers.go │ │ │ │ └── config_legacy_client_ciphers.go │ │ ├── go-plugins-helpers │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── authorization │ │ │ │ ├── README.md │ │ │ │ └── api.go │ │ │ ├── authz │ │ │ │ ├── README.md │ │ │ │ └── api.go │ │ │ └── sdk │ │ │ │ ├── encoder.go │ │ │ │ ├── handler.go │ │ │ │ ├── tcp_listener.go │ │ │ │ ├── unix_listener.go │ │ │ │ └── unix_listener_unsupported.go │ │ ├── go-units │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.code │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── duration.go │ │ │ ├── size.go │ │ │ └── ulimit.go │ │ └── libtrust │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── certificates.go │ │ │ ├── doc.go │ │ │ ├── ec_key.go │ │ │ ├── filter.go │ │ │ ├── hash.go │ │ │ ├── jsonsign.go │ │ │ ├── key.go │ │ │ ├── key_files.go │ │ │ ├── key_manager.go │ │ │ ├── rsa_key.go │ │ │ ├── testutil │ │ │ └── certificates.go │ │ │ ├── tlsdemo │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── gencert.go │ │ │ ├── genkeys.go │ │ │ └── server.go │ │ │ ├── trustgraph │ │ │ ├── graph.go │ │ │ ├── memory_graph.go │ │ │ └── statement.go │ │ │ └── util.go │ └── opencontainers │ │ └── runc │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── libcontainer │ │ └── user │ │ ├── MAINTAINERS │ │ ├── lookup.go │ │ ├── lookup_unix.go │ │ ├── lookup_unsupported.go │ │ └── user.go │ └── golang.org │ └── x │ └── net │ ├── LICENSE │ ├── PATENTS │ └── context │ ├── context.go │ └── ctxhttp │ ├── cancelreq.go │ ├── cancelreq_go14.go │ └── ctxhttp.go ├── LICENSE ├── Makefile ├── README.md ├── main.go ├── man └── docker-novolume-plugin.8.md ├── plugin.go └── systemd ├── docker-novolume-plugin.service └── docker-novolume-plugin.socket /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_solaris.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/coreos/go-systemd/activation/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/files.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/coreos/go-systemd/activation/listeners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/listeners.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/coreos/go-systemd/activation/packetconns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/packetconns.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/attach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/attach.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/build.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/cli.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/commit.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/cp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/cp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/create.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/diff.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/events.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/exec.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/export.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/formatter/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/formatter/custom.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/formatter/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/formatter/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/hijack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/hijack.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/history.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/images.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/import.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/info.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/inspect.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/inspect/inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/inspect/inspector.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/inspect/inspector_go14.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/inspect/inspector_go14.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/inspect/inspector_go15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/inspect/inspector_go15.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/kill.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/load.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/login.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/logout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/logout.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/logs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/network.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/pause.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/port.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/ps.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/pull.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/push.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/rename.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/restart.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/rm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/rmi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/rmi.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/run.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/save.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/search.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/start.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/stats.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/stop.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/tag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/top.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/top.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/trust.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/trust.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/unpause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/unpause.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/update.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/utils_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/utils_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/utils_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/utils_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/version.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/volume.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/client/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/client/wait.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/fixtures/keyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/fixtures/keyfile -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/httputils/form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/httputils/form.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/httputils/httputils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/httputils/httputils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/middleware.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/profiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/profiler.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/build/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/build/backend.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/build/build.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/build/build_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/build/build_routes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/backend.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/container.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/container_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/container_routes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/copy.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/exec.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/container/inspect.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/local/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/local/image.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/local/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/local/local.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/network/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/network/backend.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/network/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/network/filter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/network/network.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/network/network_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/network/network_routes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/router.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/system/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/system/backend.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/system/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/system/system.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/system/system_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/system/system_routes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/volume/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/volume/backend.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/volume/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/volume/volume.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router/volume/volume_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router/volume/volume_routes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/router_swapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/router_swapper.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/server_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/server_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/api/server/server_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/api/server/server_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/contrib/syntax/vim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/contrib/syntax/vim/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/authorization/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/authorization/api.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/authorization/authz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/authorization/authz.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/authorization/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/authorization/plugin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/authorization/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/authorization/response.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/bytespipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/bytespipe.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/fmt.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/multireader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/multireader.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/readers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/readers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/scheduler.go: -------------------------------------------------------------------------------- 1 | // +build !gccgo 2 | 3 | package ioutils 4 | 5 | func callSchedulerIfNecessary() { 6 | } 7 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/temp_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/temp_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/temp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/temp_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writeflusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writeflusher.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/discovery.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/foo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/foo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/pluginrpc-gen/template.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/plugins/plugins.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/chtimes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/chtimes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/events_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/events_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/filesys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/filesys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/filesys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/filesys_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/mknod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/mknod.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/mknod_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/mknod_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/path_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/path_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/path_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/path_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_solaris.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/syscall_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/syscall_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/umask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/umask.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/umask_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/umask_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/xattrs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/xattrs_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/xattrs_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/xattrs_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/version/version.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Azure/go-ansiterm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Azure/go-ansiterm/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Graylog2/go-gelf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Graylog2/go-gelf/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/RackSec/srslog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/RackSec/srslog/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/agl/ed25519/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/agl/ed25519/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/LICENSE.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/boltdb/bolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/boltdb/bolt/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/coreos/etcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/coreos/etcd/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/deckarep/golang-set/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/deckarep/golang-set/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/engine-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/engine-api/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go-connections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go-connections/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.code -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.docs -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/notarymysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/notarymysql/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/tuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/tuf/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/fluent/fluent-logger-golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/fluent/fluent-logger-golang/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/website/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/website/LICENSE.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/go-msgpack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/go-msgpack/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/website/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/website/LICENSE.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/jfrazelle/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/jfrazelle/go/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/kr/pty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/kr/pty/License -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/dns/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/dns/COPYRIGHT -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/dns/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/pkcs11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/pkcs11/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/opencontainers/runc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/opencontainers/runc/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/opencontainers/specs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/opencontainers/specs/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/samuel/go-zookeeper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/samuel/go-zookeeper/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/seccomp/libseccomp-golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/seccomp/libseccomp-golang/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/syndtr/gocapability/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/syndtr/gocapability/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/tchap/go-patricia/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/tchap/go-patricia/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/tinylib/msgp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/tinylib/msgp/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vaughan0/go-ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vaughan0/go-ini/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vbatts/tar-split/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vbatts/tar-split/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/gopkg.in/fsnotify.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/gopkg.in/fsnotify.v1/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_attach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_attach.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_commit.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_create.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_inspect.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_list.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_remove.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_rename.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_restart.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_start.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_stats.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_stop.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_top.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_top.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_unpause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_unpause.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/container_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/container_update.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/copy.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/diff.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/events.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/exec.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/export.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/hijack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/hijack.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/history.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_build.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_create.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_import.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_inspect.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_list.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_load.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_pull.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_push.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_remove.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_save.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_search.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/image_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/image_tag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/info.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/interface.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/kill.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/login.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/logs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/network.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/pause.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/privileged.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/privileged.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/request.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/resize.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/version.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/volume.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/client/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/client/wait.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/blkiodev/blkio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/blkiodev/blkio.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/configs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/container/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/container/config.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/container/host_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/container/host_config.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/container/hostconfig_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/container/hostconfig_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/container/hostconfig_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/container/hostconfig_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/events/events.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/filters/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/filters/parse.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/network/network.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/registry/registry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/seccomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/seccomp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/stats.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/strslice/strslice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/strslice/strslice.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/time/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/time/timestamp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/versions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/versions/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/versions/v1p19/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/versions/v1p19/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/engine-api/types/versions/v1p20/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/engine-api/types/versions/v1p20/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-connections/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/nat/nat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-connections/nat/nat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/nat/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-connections/nat/parse.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/nat/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-connections/nat/sort.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/sockets/tcp_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-connections/sockets/tcp_socket.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/sockets/unix_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-connections/sockets/unix_socket.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/NOTICE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/authorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/authorization/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/authorization/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/authorization/api.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/authz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/authz/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/authz/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/authz/api.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/encoder.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/handler.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/tcp_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/tcp_listener.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/unix_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/unix_listener.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/unix_listener_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-plugins-helpers/sdk/unix_listener_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-units/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-units/CONTRIBUTING.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-units/LICENSE.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-units/LICENSE.code -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-units/LICENSE.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-units/LICENSE.docs -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-units/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-units/MAINTAINERS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-units/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-units/duration.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/CONTRIBUTING.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/MAINTAINERS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/certificates.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/ec_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/ec_key.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/filter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/hash.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/jsonsign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/jsonsign.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/key.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/key_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/key_files.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/key_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/key_manager.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/rsa_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/rsa_key.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/testutil/certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/testutil/certificates.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/gencert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/gencert.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/genkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/genkeys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/tlsdemo/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/graph.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/memory_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/memory_graph.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/trustgraph/statement.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/libtrust/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/docker/libtrust/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/opencontainers/runc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/opencontainers/runc/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/opencontainers/runc/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/opencontainers/runc/NOTICE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/user.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq_go14.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq_go14.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/ctxhttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/ctxhttp.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/main.go -------------------------------------------------------------------------------- /man/docker-novolume-plugin.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/man/docker-novolume-plugin.8.md -------------------------------------------------------------------------------- /plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/plugin.go -------------------------------------------------------------------------------- /systemd/docker-novolume-plugin.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/systemd/docker-novolume-plugin.service -------------------------------------------------------------------------------- /systemd/docker-novolume-plugin.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectatomic/docker-novolume-plugin/HEAD/systemd/docker-novolume-plugin.socket --------------------------------------------------------------------------------