mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
18 lines
437 B
YAML
18 lines
437 B
YAML
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
|