tobilg / docker-zookeeper-webui

Docker image for using `zk-web` as ZooKeeper Web UI
MIT License
32 stars 11 forks source link

Critical typo envinronment variable ZK_DEFAULT_NODE in bootstrap.sh #1

Closed vblz closed 8 years ago

vblz commented 8 years ago
# Check for ZK_DEFAULT_NODE parameter
if [ -n "$ZK_DEFAULT_NODE" ]; then
  echo " :default-node ${HTTP_PORT}" >> $CONFIG_FILE
fi

should be

# Check for ZK_DEFAULT_NODE parameter
if [ -n "$ZK_DEFAULT_NODE" ]; then
  echo " :default-node ${ZK_DEFAULT_NODE}" >> $CONFIG_FILE
fi
tobilg commented 8 years ago

Thanks for reporting this. It was fixed some moments ago, and the Docker image is currently building...