mirror of
https://github.com/ansible/awx.git
synced 2026-02-01 01:28:09 -03:30
Fix an issue where mercurial wasn't getting installed in the image
Also fixes an issue assigning proxy environment variables
This commit is contained in:
@@ -187,9 +187,9 @@
|
||||
links: "{{ awx_web_container_links|list }}"
|
||||
hostname: awxweb
|
||||
env:
|
||||
http_proxy: "{{ http_proxy | default(omit) }}"
|
||||
https_proxy: "{{ https_proxy | default(omit) }}"
|
||||
no_proxy: "{{ no_proxy | default(omit) }}"
|
||||
http_proxy: "{{ http_proxy | default('') }}"
|
||||
https_proxy: "{{ https_proxy | default('') }}"
|
||||
no_proxy: "{{ no_proxy | default('') }}"
|
||||
SECRET_KEY: "{{ awx_secret_key }}"
|
||||
DATABASE_NAME: "{{ pg_database }}"
|
||||
DATABASE_USER: "{{ pg_username }}"
|
||||
@@ -216,9 +216,9 @@
|
||||
user: root
|
||||
hostname: awx
|
||||
env:
|
||||
http_proxy: "{{ http_proxy | default(omit) }}"
|
||||
https_proxy: "{{ https_proxy | default(omit) }}"
|
||||
no_proxy: "{{ no_proxy | default(omit) }}"
|
||||
http_proxy: "{{ http_proxy | default('') }}"
|
||||
https_proxy: "{{ https_proxy | default('') }}"
|
||||
no_proxy: "{{ no_proxy | default('') }}"
|
||||
SECRET_KEY: "{{ awx_secret_key }}"
|
||||
DATABASE_NAME: "{{ pg_database }}"
|
||||
DATABASE_USER: "{{ pg_username }}"
|
||||
|
||||
Reference in New Issue
Block a user