From 08cb430281bb1aa003f21a983029dd934bd99a10 Mon Sep 17 00:00:00 2001 From: creack Date: Fri, 22 Mar 2013 04:34:46 -0700 Subject: [PATCH 1/2] Move the debian makefile to avoid confusions --- .gitignore | 1 + Makefile => deb/Makefile.deb | 0 2 files changed, 1 insertion(+) rename Makefile => deb/Makefile.deb (100%) diff --git a/.gitignore b/.gitignore index eba48d297..cabd39906 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .vagrant +bin docker/docker .*.swp a.out diff --git a/Makefile b/deb/Makefile.deb similarity index 100% rename from Makefile rename to deb/Makefile.deb From fc0eac37e47f220e83eacde51519de092b17e426 Mon Sep 17 00:00:00 2001 From: creack Date: Fri, 22 Mar 2013 04:37:18 -0700 Subject: [PATCH 2/2] Put back the "official" repo --- auth/auth.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/auth/auth.go b/auth/auth.go index 2779ae04c..6eb9af22e 100644 --- a/auth/auth.go +++ b/auth/auth.go @@ -16,8 +16,7 @@ import ( const CONFIGFILE = ".dockercfg" // the registry server we want to login against -//const REGISTRY_SERVER = "https://registry.docker.io" -const REGISTRY_SERVER = "http://192.168.56.1:5000" +const REGISTRY_SERVER = "https://registry.docker.io" type AuthConfig struct { Username string `json:"username"`