agentbond-api / docker-compose.yml
Karan6124's picture
remove grafana service from docker-compose to use local windows grafana
9618bd3
Raw
History Blame Contribute Delete
442 Bytes
version: "3.9"
services:
redis:
image: redis:7-alpine
container_name: investigator_redis
ports:
- "6379:6379"
restart: unless-stopped
prometheus:
image: prom/prometheus:latest
container_name: investigator_prometheus
ports:
- "9090:9090"
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped