This is an automated email from the ASF dual-hosted git repository.
ayushsaxena pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive-dev-box.git
The following commit(s) were added to refs/heads/master by this push:
new 663625b Use Docker Images from Apache Namespace.
663625b is described below
commit 663625bc74e799f35c6bab1c1485530367287c61
Author: Ayush Saxena <[email protected]>
AuthorDate: Tue Jan 23 12:06:43 2024 +0530
Use Docker Images from Apache Namespace.
---
Dockerfile.bazaar | 2 +-
Dockerfile.executor | 2 +-
README.md | 2 +-
buildAll | 4 ++--
4 files changed, 5 insertions(+), 5 deletions(-)
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 @@ Ability to run some version of hive as a standalone container;
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 @@ if [ "$1" == "push" ]; then
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