Merge pull request #9 from nalind/postmove

Catch up to the projectatomic move
This commit is contained in:
Nalin Dahyabhai
2017-03-16 10:59:07 -04:00
committed by GitHub
9 changed files with 13 additions and 13 deletions

View File

@@ -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

View File

@@ -1,15 +1,15 @@
buildah - a tool for building OCI images
========================================
[![Go Report Card](https://goreportcard.com/badge/github.com/nalind/buildah)](https://goreportcard.com/report/github.com/nalind/buildah)
[![Travis](https://travis-ci.org/nalind/buildah.svg?branch=master)](https://travis-ci.org/nalind/buildah)
[![Go Report Card](https://goreportcard.com/badge/github.com/projectatomic/buildah)](https://goreportcard.com/report/github.com/projectatomic/buildah)
[![Travis](https://travis-ci.org/projectatomic/buildah.svg?branch=master)](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

View File

@@ -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"
)

View File

@@ -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"
)

View File

@@ -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"
)

View File

@@ -3,7 +3,7 @@ package main
import (
"fmt"
"github.com/nalind/buildah"
"github.com/projectatomic/buildah"
"github.com/urfave/cli"
)

View File

@@ -3,7 +3,7 @@ package main
import (
"fmt"
"github.com/nalind/buildah"
"github.com/projectatomic/buildah"
"github.com/urfave/cli"
)

View File

@@ -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"
)

View File

@@ -7,7 +7,7 @@ import (
"syscall"
"github.com/Sirupsen/logrus"
"github.com/nalind/buildah"
"github.com/projectatomic/buildah"
"github.com/urfave/cli"
)