File size: 442 Bytes
4b14ba1
 
 
 
 
 
 
 
7972f6e
 
 
 
 
 
 
 
9618bd3
7972f6e
 
4b14ba1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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