Skip to content

Commit

Permalink
localhost -> redis
Browse files Browse the repository at this point in the history
  • Loading branch information
harryjmoss committed Aug 27, 2024
1 parent 0d27704 commit 8741929
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ x-build-args-common: &build-args-common

x-celery-args-common: &celery-args-common
<<: *build-args-common
CELERY_DASH_BROKER_URL: redis://:${REDIS_PASSWORD}@localhost:6379/0
CELERY_DASH_RESULT_BACKEND: redis://:${REDIS_PASSWORD}@localhost:6379/0
CELERY_DASH_BROKER_URL: redis://:${REDIS_PASSWORD}@redis:6379/0
CELERY_DASH_RESULT_BACKEND: redis://:${REDIS_PASSWORD}@redis:6379/0

x-web-args-common: &web-args-common
<< : *build-args-common
WEB_CELERY_DASH_BROKER_URL: redis://:${REDIS_PASSWORD}@localhost:6379/0
WEB_CELERY_DASH_RESULT_BACKEND: redis://:${REDIS_PASSWORD}@localhost:6379/0
WEB_REDIS_CACHE: redis://:${REDIS_PASSWORD}@localhost:6379/1
WEB_CELERY_DASH_BROKER_URL: redis://:${REDIS_PASSWORD}@redis:6379/0
WEB_CELERY_DASH_RESULT_BACKEND: redis://:${REDIS_PASSWORD}@redis:6379/0
WEB_REDIS_CACHE: redis://:${REDIS_PASSWORD}@redis:6379/1

services:
api:
Expand Down

0 comments on commit 8741929

Please sign in to comment.