Removed RabbitMQ docker container from docker-compose.yml
Now that Celery switched to using Redis as broker, we no longer need RabbitMQ. Celery has been running on Redis for a while now and it all seems fine, so it's time to wave the Rabbit goodbye.
This commit is contained in:
@@ -31,18 +31,6 @@ services:
|
|||||||
max-size: "200k"
|
max-size: "200k"
|
||||||
max-file: "20"
|
max-file: "20"
|
||||||
|
|
||||||
rabbit:
|
|
||||||
image: rabbitmq:3.6.10
|
|
||||||
container_name: rabbit
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "127.0.0.1:5672:5672"
|
|
||||||
logging:
|
|
||||||
driver: "json-file"
|
|
||||||
options:
|
|
||||||
max-size: "200k"
|
|
||||||
max-file: "20"
|
|
||||||
|
|
||||||
elastic:
|
elastic:
|
||||||
image: armadillica/elasticsearch:6.1.1
|
image: armadillica/elasticsearch:6.1.1
|
||||||
container_name: elastic
|
container_name: elastic
|
||||||
@@ -113,7 +101,6 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- mongo
|
- mongo
|
||||||
- redis
|
- redis
|
||||||
- rabbit
|
|
||||||
|
|
||||||
celery_worker:
|
celery_worker:
|
||||||
image: armadillica/blender_cloud:latest
|
image: armadillica/blender_cloud:latest
|
||||||
@@ -130,7 +117,6 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- mongo
|
- mongo
|
||||||
- redis
|
- redis
|
||||||
- rabbit
|
|
||||||
logging:
|
logging:
|
||||||
driver: "json-file"
|
driver: "json-file"
|
||||||
options:
|
options:
|
||||||
@@ -152,7 +138,6 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- mongo
|
- mongo
|
||||||
- redis
|
- redis
|
||||||
- rabbit
|
|
||||||
- celery_worker
|
- celery_worker
|
||||||
logging:
|
logging:
|
||||||
driver: "json-file"
|
driver: "json-file"
|
||||||
|
Reference in New Issue
Block a user