🔥 Remove Celery and Flower, they are currently not used nor recommended (#694)

This commit is contained in:
Sebastián Ramírez
2024-03-12 19:19:03 +01:00
committed by GitHub
parent 63eb8b5ef8
commit 1e256bce5d
20 changed files with 3 additions and 466 deletions

View File

@@ -48,19 +48,6 @@ services:
ports:
- "8080:8080"
queue:
restart: "no"
ports:
- "5671:5671"
- "5672:5672"
- "15672:15672"
- "15671:15671"
flower:
restart: "no"
ports:
- "5555:5555"
backend:
restart: "no"
ports:
@@ -69,24 +56,11 @@ services:
- ./backend/:/app
build:
context: ./backend
dockerfile: backend.dockerfile
args:
INSTALL_DEV: ${INSTALL_DEV-true}
# command: sleep infinity # Infinite loop to keep container alive doing nothing
command: /start-reload.sh
celeryworker:
restart: "no"
volumes:
- ./backend/:/app
environment:
- RUN=celery worker -A app.worker -l info -Q main-queue -c 1
build:
context: ./backend
dockerfile: celeryworker.dockerfile
args:
INSTALL_DEV: ${INSTALL_DEV-true}
frontend:
restart: "no"
build: