mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
18 lines
429 B
YAML
18 lines
429 B
YAML
version: '3'
|
|
services:
|
|
# Primary Tower Development Container link
|
|
awx:
|
|
environment:
|
|
AWX_GROUP_QUEUES: tower,thepentagon
|
|
links:
|
|
- isolated
|
|
# Isolated Rampart Container
|
|
isolated:
|
|
image: ${DEV_DOCKER_TAG_BASE}/awx_isolated:${TAG}
|
|
hostname: isolated
|
|
volumes:
|
|
- "../awx/main/expect:/awx_devel"
|
|
- "../awx/lib:/awx_lib"
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:ro"
|
|
privileged: true
|