Last week I realized that jodoc was not setting the monitor.host.port correctly so this weekend I spent some time fixing the code. The following commands start a MiniAccumuloCluster with three tservers.
export WORKDIR=~/my-miniaccumulo-cluster
rm -rf $WORKDIR/*
mkdir -p $WORKDIR
docker run \
-v $WORKDIR:/accumulo \
-e JAVA_USER=${USER} \
-e jodoc.tserver.count=3 \
-e jodoc.accumulo.schema=D4M \
-e jodoc.monitor.port=20001 \
-e jodoc.zookeeper.port=20000 \
-d \
--net=host \
-t medined/jodoc
