1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 09:25:10 +03:00

Add subnet configuratin to Docker Compose to avoid conflicts.

The out of the box subnet Docker Compose selects may conflict with your existing LAN subnets. This makes it configurable.
This commit is contained in:
mstrent 2020-05-28 09:17:45 -07:00
parent 38025e1926
commit 8d6d5eeed8
2 changed files with 14 additions and 0 deletions

View File

@ -154,3 +154,6 @@ secret_key=awxsecret
# which makes include "optional" - i.e. not fail
# if file is absent
#extra_nginx_include="/etc/nginx/awx_extra[.]conf"
# Docker compose explicit subnet. Set to avoid overlapping your existing LAN networks.
#docker_compose_subnet="172.17.0.1/16"

View File

@ -171,6 +171,17 @@ services:
https_proxy: {{ https_proxy | default('') }}
no_proxy: {{ no_proxy | default('') }}
{% endif %}
{% if docker_compose_subnet is defined %}
networks:
default:
driver: bridge
ipam:
driver: default
config:
- subnet: {{ docker_compose_subnet }}
{% endif %}
volumes:
supervisor-socket:
rsyslog-socket: