-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
46 lines (42 loc) · 953 Bytes
/
docker-compose.yaml
File metadata and controls
46 lines (42 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
version: '3.8'
services:
pystatsd:
build: .
image: pystatsd-helix:latest
container_name: pystatsd
ports:
- "8125:8125/udp"
- "8126:8126"
volumes:
- ./docker_config.toml:/app/config.toml:ro
depends_on:
- graphite
networks:
- pystatsd-net
restart: unless-stopped
graphite:
image: graphiteapp/graphite-statsd
container_name: graphite
ports:
- "8080:80" # Graphite Web Interface
- "2003:2003" # Carbon Line Receiver
- "2004:2004" # Carbon Pickle Receiver
- "7002:7002" # Carbon Cache Query
networks:
- pystatsd-net
restart: unless-stopped
grafana:
image: grafana/grafana
container_name: grafana
ports:
- "3000:3000"
environment:
- GF_SECURITY_ADMIN_PASSWORD=admin
networks:
- pystatsd-net
depends_on:
- graphite
restart: unless-stopped
networks:
pystatsd-net:
driver: bridge