Skip to content

Instantly share code, notes, and snippets.

@jotak
Created March 24, 2017 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jotak/58fa3d2295d55e5a1ffc2cce67607e96 to your computer and use it in GitHub Desktop.
Save jotak/58fa3d2295d55e5a1ffc2cce67607e96 to your computer and use it in GitHub Desktop.
docker-compose for local hawkular-services
hawkular:
image: "jotak/hawkular-services:latest"
ports:
- "8080:8080"
- "8443:8443"
- "9990:9990"
links:
- myCassandra
volumes:
- /home/jotak/hservices/opt/data:/opt/data:Z
environment:
- CASSANDRA_NODES=myCassandra
- ADMIN_TOKEN
myCassandra:
image: cassandra:3.0.9
environment:
- CASSANDRA_START_RPC=true
@jotak
Copy link
Author

jotak commented Mar 24, 2017

Replace the volume mount point as desired (/home/jotak/hservices/opt/data)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment