Skip to content

Instantly share code, notes, and snippets.

@yolabingo
Last active May 9, 2025 16:11
Show Gist options
  • Save yolabingo/b17a1981be9e83ba5d6a3a0a476ef21f to your computer and use it in GitHub Desktop.
Save yolabingo/b17a1981be9e83ba5d6a3a0a476ef21f to your computer and use it in GitHub Desktop.
glowroot docker compose
networks:
gr:
services:
cassandra:
container_name: cassandra
image: cassandra:4.1
restart: unless-stopped
environment:
- MAX_HEAP_SIZE=8G
- HEAP_NEWSIZE=4G
ports:
- "9042:9042"
networks:
- gr
volumes:
- /opt/glowroot/cassandra:/var/lib/cassandra
glowroot-central:
image: glowroot/glowroot-central:0.14.1
container_name: glowroot-central
restart: unless-stopped
# volumes:
# - ./glowroot-central.properties:/usr/share/glowroot-central/glowroot-central.properties
depends_on:
- cassandra
ports:
- "4000:4000"
- "8181:8181"
environment:
- CASSANDRA_CONTACT_POINTS=cassandra
networks:
- gr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment