1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00
awx/tools/docker-compose.yml
Joshua "jag" Ginsberg f25b76aee9 Integrate statsd metrics into ansible playbook execution.
* Add dependencies for pystatsd and django-statsd-mozilla
* Default turned off except for development environment
* Modify docker-compose to install statsd/graphite host
2016-01-26 16:54:24 -05:00

39 lines
620 B
YAML

tower:
build: ./docker-compose
ports:
- "8080:8080"
- "8013:8013"
links:
- postgres
- redis
- mongo
- graphite
volumes:
- ../:/tower_devel
postgres:
image: postgres:9.4.1
# ports:
# - 5432:5432
redis:
image: redis:3.0.1
# ports:
# - 6379:6379
mongo:
image: mongo:3.0
# ports:
# - 27017:27017
dockerui:
image: dockerui/dockerui
ports:
- "9000:9000"
privileged: true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
graphite:
image: hopsoft/graphite-statsd
ports:
- "8001:80"
- "2003:2003"
- "8125:8125/udp"
- "8126:8126"