Created
August 7, 2015 17:53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# clean up previous containers | |
docker rm -f hawkular hawkular-storage | |
# start storage node | |
docker run -d --name=hawkular-storage abh1nav/cassandra | |
# get cassandra ip | |
storage=$(docker inspect --format '{{ .NetworkSettings.IPAddress }}' hawkular-storage) | |
# start hawkular | |
docker run -dP --name=hawkular -e "TEST_MODE=true" -e "CASSANDRA_NODES=$storage" hawkular/hawkular | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment