Use Docker Images from Apache Namespace.
diff --git a/Dockerfile.bazaar b/Dockerfile.bazaar
index c37ffbd..d79b1f1 100644
--- a/Dockerfile.bazaar
+++ b/Dockerfile.bazaar
@@ -1,4 +1,4 @@
-FROM kgyrtkirk/hive-dev-box:latest
+FROM apache/hive-dev-box:latest
 
 USER root
 
diff --git a/Dockerfile.executor b/Dockerfile.executor
index 66155ef..4e5a3c9 100644
--- a/Dockerfile.executor
+++ b/Dockerfile.executor
@@ -1,4 +1,4 @@
-FROM kgyrtkirk/hive-dev-box:latest
+FROM apache/hive-dev-box:latest
 
 USER root
 
diff --git a/README.md b/README.md
index 71af4bc..3ef1ca8 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@
 
 Lets launch a hive with:
 ```
-docker run --rm -d -p 10000:10000 -v hive-dev-box_work:/work kgyrtkirk/hive-dev-box:bazaar
+docker run --rm -d -p 10000:10000 -v hive-dev-box_work:/work apache/hive-dev-box:bazaar
 ```
 the above will initialize the metastore and launch a nodemanger/resourcemanager and hive as separate processes inside the container (in a screen session)
 
diff --git a/buildAll b/buildAll
index bf8af9b..8b6814e 100755
--- a/buildAll
+++ b/buildAll
@@ -29,8 +29,8 @@
 fi
 
 
-baseName=kgyrtkirk/hive-dev-box
-altName=kgyrtkirk/hive-dev-box
+baseName=apache/hive-dev-box
+altName=apache/hive-dev-box
 if [ "$1" != "" ]; then
 	altName="$1"
 	shift