Last active
May 9, 2025 16:11
-
-
Save yolabingo/b17a1981be9e83ba5d6a3a0a476ef21f to your computer and use it in GitHub Desktop.
glowroot docker compose
This file contains hidden or 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
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