1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-26 00:38:37 +00:00
dockerfiles/statsd/docker-compose.yml
2017-06-28 18:03:57 +08:00

21 lines
329 B
YAML

statsd:
image: vimagick/statsd
ports:
- "8125:8125/udp"
- "8126:8126/tcp"
links:
- graphite
restart: always
graphite:
image: vimagick/graphite
ports:
- "2003:2003"
- "2004:2004"
- "7002:7002"
- "8080:8080"
- "9001:9001"
volumes:
- ./data:/opt/graphite/storage
restart: always