Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
It is recommended that use `go get` to download a single command tools.

```
$ go get -d github.com/opencontainers/image-tools/cmd/oci-unpack
$ go get -d github.com/opencontainers/image-tools/cmd/oci-image-tool
$ cd $GOPATH/src/github.com/opencontainers/image-tools/
$ make all
$ sudo make install
Expand Down Expand Up @@ -36,7 +36,7 @@ More information about `oci-create-runtime-bundle` can be found in its [man page

```
$ mkdir busybox-bundle
$ oci-create-runtime-bundle --ref latest busybox-oci busybox-bundle
$ oci-image-tool create --ref latest busybox-oci busybox-bundle
$ cd busybox-bundle && sudo runc run busybox
```

Expand All @@ -45,7 +45,7 @@ $ cd busybox-bundle && sudo runc run busybox
More information about `oci-image-validate` can be found in its [man page](./cmd/oci-image-validate/oci-image-validate.1.md)

```
$ oci-image-validate --type imageLayout --ref latest busybox-oci
$ oci-image-tool validate --type imageLayout --ref latest busybox-oci
busybox-oci: OK
```

Expand All @@ -55,7 +55,7 @@ More information about `oci-unpack` can be found in its [man page](./cmd/oci-unp

```
$ mkdir busybox-bundle
$ oci-unpack --ref latest busybox-oci busybox-bundle
$ oci-image-tool unpack --ref latest busybox-oci busybox-bundle
$ tree busybox-bundle
busybox-bundle
├── bin
Expand Down
2 changes: 2 additions & 0 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ import:
version: 7b17cc4658ef5ca157b986ea5c0b43af7938532b
- package: github.com/Sirupsen/logrus
version: ~0.10.0
- package: github.com/urfave/cli
version: ~1.19.1
21 changes: 21 additions & 0 deletions vendor/github.com/urfave/cli/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading