mirror of
https://github.com/ansible/awx.git
synced 2026-05-17 14:27:42 -02:30
replace rabbitmq with redis
* local awx docker-compose and image build only.
This commit is contained in:
committed by
Ryan Petrello
parent
be58906aed
commit
e94bb44082
@@ -6,7 +6,7 @@ services:
|
||||
image: {{ awx_web_docker_actual_image }}
|
||||
container_name: awx_web
|
||||
depends_on:
|
||||
- rabbitmq
|
||||
- redis
|
||||
- memcached
|
||||
{% if pg_hostname is not defined %}
|
||||
- postgres
|
||||
@@ -63,7 +63,7 @@ services:
|
||||
image: {{ awx_task_docker_actual_image }}
|
||||
container_name: awx_task
|
||||
depends_on:
|
||||
- rabbitmq
|
||||
- redis
|
||||
- memcached
|
||||
- web
|
||||
{% if pg_hostname is not defined %}
|
||||
@@ -111,15 +111,11 @@ services:
|
||||
https_proxy: {{ https_proxy | default('') }}
|
||||
no_proxy: {{ no_proxy | default('') }}
|
||||
|
||||
rabbitmq:
|
||||
image: {{ rabbitmq_image }}
|
||||
container_name: awx_rabbitmq
|
||||
redis:
|
||||
image: {{ redis_image }}
|
||||
container_name: awx_redis
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
RABBITMQ_DEFAULT_VHOST: "{{ rabbitmq_default_vhost }}"
|
||||
RABBITMQ_DEFAULT_USER: "{{ rabbitmq_user }}"
|
||||
RABBITMQ_DEFAULT_PASS: "{{ rabbitmq_password | quote }}"
|
||||
RABBITMQ_ERLANG_COOKIE: {{ rabbitmq_erlang_cookie }}
|
||||
http_proxy: {{ http_proxy | default('') }}
|
||||
https_proxy: {{ https_proxy | default('') }}
|
||||
no_proxy: {{ no_proxy | default('') }}
|
||||
|
||||
Reference in New Issue
Block a user