add redis environmental variables

This commit is contained in:
Kyle Lucy
2018-12-07 22:42:18 -05:00
parent 25bf47149f
commit 3d3f11fb85
3 changed files with 22 additions and 6 deletions

View File

@ -43,8 +43,8 @@ parameters:
rabbitmq_prefetch_count: 10
# Redis processing
redis_scheme: tcp
redis_host: redis
redis_port: 6379
redis_path: null
redis_password: null
redis_scheme: {{ redis_scheme }}
redis_host: {{ redis_host }}
redis_port: {{ redis_port }}
redis_path: {{ redis_path }}
redis_password: {{ redis_password }}