Merge pull request #7225 from vieux/update_path

update go import path and libcontainer
This commit is contained in:
Victor Vieux 2014-07-24 17:22:21 -07:00
commit 660a0f5cd3
6 changed files with 11 additions and 11 deletions

View file

@ -1,5 +1,5 @@
Sam Alba <sam@dotcloud.com> (@samalba)
Joffrey Fuhrer <joffrey@dotcloud.com> (@shin-)
Ken Cochrane <ken@dotcloud.com> (@kencochrane)
Sam Alba <sam@docker.com> (@samalba)
Joffrey Fuhrer <joffrey@docker.com> (@shin-)
Ken Cochrane <ken@docker.com> (@kencochrane)
Vincent Batts <vbatts@redhat.com> (@vbatts)
Olivier Gambier <olivier@docker.com> (@dmp42)

View file

@ -11,7 +11,7 @@ import (
"path"
"strings"
"github.com/dotcloud/docker/utils"
"github.com/docker/docker/utils"
)
// Where we store the config file
@ -20,7 +20,7 @@ const CONFIGFILE = ".dockercfg"
// Only used for user auth + account creation
const INDEXSERVER = "https://index.docker.io/v1/"
//const INDEXSERVER = "https://indexstaging-docker.dotcloud.com/v1/"
//const INDEXSERVER = "https://registry-stage.hub.docker.com/v1/"
var (
ErrConfigFileMissing = errors.New("The Auth config file is missing")

View file

@ -23,8 +23,8 @@ import (
"strings"
"time"
"github.com/dotcloud/docker/dockerversion"
"github.com/dotcloud/docker/utils"
"github.com/docker/docker/dockerversion"
"github.com/docker/docker/utils"
)
var (

View file

@ -3,7 +3,7 @@ package registry
import (
"encoding/json"
"fmt"
"github.com/dotcloud/docker/utils"
"github.com/docker/docker/utils"
"github.com/gorilla/mux"
"io"
"io/ioutil"

View file

@ -7,7 +7,7 @@ import (
"strings"
"testing"
"github.com/dotcloud/docker/utils"
"github.com/docker/docker/utils"
)
var (
@ -145,7 +145,7 @@ func TestPushImageLayerRegistry(t *testing.T) {
}
func TestResolveRepositoryName(t *testing.T) {
_, _, err := ResolveRepositoryName("https://github.com/dotcloud/docker")
_, _, err := ResolveRepositoryName("https://github.com/docker/docker")
assertEqual(t, err, ErrInvalidRepositoryName, "Expected error invalid repo name")
ep, repo, err := ResolveRepositoryName("fooo/bar")
if err != nil {

View file

@ -1,7 +1,7 @@
package registry
import (
"github.com/dotcloud/docker/engine"
"github.com/docker/docker/engine"
)
// Service exposes registry capabilities in the standard Engine