mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
31 lines
479 B
YAML
31 lines
479 B
YAML
tower:
|
|
build: ./docker-compose
|
|
ports:
|
|
- "8080:8080"
|
|
- "8013:8013"
|
|
links:
|
|
- postgres
|
|
- redis
|
|
- mongo
|
|
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
|