replace rabbitmq with redis

* local awx docker-compose and image build only.
This commit is contained in:
chris meyers
2020-02-11 09:10:34 -05:00
committed by Ryan Petrello
parent be58906aed
commit e94bb44082
9 changed files with 22 additions and 54 deletions

View File

@@ -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('') }}