mirror of
https://github.com/containers/skopeo.git
synced 2026-05-18 05:00:15 +00:00
Merge pull request #9 from nalind/postmove
Catch up to the projectatomic move
This commit is contained in:
4
Makefile
4
Makefile
@@ -10,10 +10,10 @@ clean:
|
||||
$(RM) buildah
|
||||
|
||||
# For vendoring to work right, the checkout directory must be such that out top
|
||||
# level is at $GOPATH/src/github.com/nalind/buildah.
|
||||
# level is at $GOPATH/src/github.com/projectatomic/buildah.
|
||||
.PHONY: gopath
|
||||
gopath:
|
||||
test $(shell pwd) = $(shell cd ../../../../src/github.com/nalind/buildah ; pwd)
|
||||
test $(shell pwd) = $(shell cd ../../../../src/github.com/projectatomic/buildah ; pwd)
|
||||
|
||||
# We use https://github.com/lk4d4/vndr to manage dependencies.
|
||||
.PHONY: deps
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
buildah - a tool for building OCI images
|
||||
========================================
|
||||
|
||||
[](https://goreportcard.com/report/github.com/nalind/buildah)
|
||||
[](https://travis-ci.org/nalind/buildah)
|
||||
[](https://goreportcard.com/report/github.com/projectatomic/buildah)
|
||||
[](https://travis-ci.org/projectatomic/buildah)
|
||||
|
||||
Note: this package is pre-alpha, and will either move to an organization or be merged into a different project at some point.
|
||||
Note: this package is in alpha.
|
||||
|
||||
The buildah package provides a command line tool which can be used to
|
||||
* create a working container, either from scratch or using an image as a starting point
|
||||
* mount the working container's root filesystem for manipulation
|
||||
* umount the working container's root filesystem
|
||||
* unmount the working container's root filesystem
|
||||
* use the updated contents of the container's root filesystem as a filesystem layer to create a new image
|
||||
* delete a working container
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ import (
|
||||
|
||||
"github.com/containers/image/transports"
|
||||
"github.com/containers/storage/pkg/archive"
|
||||
"github.com/nalind/buildah"
|
||||
"github.com/projectatomic/buildah"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ import (
|
||||
|
||||
is "github.com/containers/image/storage"
|
||||
"github.com/containers/storage/storage"
|
||||
"github.com/nalind/buildah"
|
||||
"github.com/projectatomic/buildah"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ import (
|
||||
|
||||
"github.com/Sirupsen/logrus"
|
||||
"github.com/mattn/go-shellwords"
|
||||
"github.com/nalind/buildah"
|
||||
"github.com/projectatomic/buildah"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ package main
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/nalind/buildah"
|
||||
"github.com/projectatomic/buildah"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ package main
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/nalind/buildah"
|
||||
"github.com/projectatomic/buildah"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ import (
|
||||
|
||||
"github.com/Sirupsen/logrus"
|
||||
"github.com/containers/storage/pkg/reexec"
|
||||
"github.com/nalind/buildah"
|
||||
"github.com/projectatomic/buildah"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import (
|
||||
"syscall"
|
||||
|
||||
"github.com/Sirupsen/logrus"
|
||||
"github.com/nalind/buildah"
|
||||
"github.com/projectatomic/buildah"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user