blob: 140f13de7a0eb1e49fbc2911c82de9040320cc9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
version: '3'
services:
# Primary Tower Development Container link
awx:
environment:
EXTRA_GROUP_QUEUES: thepentagon
links:
- isolated
# Isolated Rampart Container
isolated:
image: gcr.io/ansible-tower-engineering/awx_isolated:${TAG}
hostname: isolated
volumes:
- "../awx/main/isolated:/awx_devel"
- "../awx/lib:/awx_lib"
- "/sys/fs/cgroup:/sys/fs/cgroup:ro"
privileged: true
|