mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
67474c8de1
* Not assuming GCR is being used for image hosting * Breaking out the dev environment bootstrapping from service starting
18 lines
427 B
YAML
18 lines
427 B
YAML
version: '3'
|
|
services:
|
|
# Primary Tower Development Container link
|
|
awx:
|
|
environment:
|
|
EXTRA_GROUP_QUEUES: thepentagon
|
|
links:
|
|
- isolated
|
|
# Isolated Rampart Container
|
|
isolated:
|
|
image: ${DEV_DOCKER_TAG_BASE}/awx_isolated:${TAG}
|
|
hostname: isolated
|
|
volumes:
|
|
- "../awx/main/isolated:/awx_devel"
|
|
- "../awx/lib:/awx_lib"
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:ro"
|
|
privileged: true
|