Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to geodocker-accumulo 0.2 #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/geodocker/accumulo:0.1
FROM quay.io/geodocker/accumulo:0.2

MAINTAINER Pomadchin Grigory <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ test: build
docker-compose up -d
docker-compose run --rm accumulo-master bash -c "set -e \
&& source /sbin/accumulo-lib.sh \
&& wait_until_accumulo_is_available \
&& wait_until_accumulo_is_available accumulo zookeeper \
&& accumulo shell -p GisPwd -e 'info'"
docker-compose down

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
ports:
- 9090:9090
hdfs-name:
image: quay.io/geodocker/hdfs:latest
image: quay.io/geodocker/hdfs:0.1
command: name
environment:
HADOOP_MASTER_ADDRESS: hdfs-name
Expand All @@ -14,7 +14,7 @@ services:
# volumes:
# - '/data/gt/hdfs:/data/hdfs'
hdfs-data:
image: quay.io/geodocker/hdfs:latest
image: quay.io/geodocker/hdfs:0.1
command: data
environment:
HADOOP_MASTER_ADDRESS: hdfs-name
Expand Down
2 changes: 1 addition & 1 deletion fs/sbin/register.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ IFS=$'\n\t'
source /sbin/accumulo-lib.sh

ACCUMULO_USER=${ACCUMULO_USER:-root}
wait_until_accumulo_is_available $INSTANCE_NAME
wait_until_accumulo_is_available $INSTANCE_NAME $ZOOKEEPERS
accumulo shell -u ${ACCUMULO_USER} -p ${ACCUMULO_PASSWORD} -e \
"createnamespace geowave"
accumulo shell -u ${ACCUMULO_USER} -p ${ACCUMULO_PASSWORD} -e \
Expand Down