Feat/docs category brains agents (#2469)

# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
This commit is contained in:
Stan Girard 2024-04-22 15:33:36 -07:00 committed by GitHub
parent 5ab1a6fe21
commit 777a6d80ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,8 +30,10 @@ services:
context: backend
dockerfile: Dockerfile
container_name: backend-core
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: ["CMD", "curl", "http://localhost:5050/healthz"]
test: [ "CMD", "curl", "http://localhost:5050/healthz" ]
command:
- "uvicorn"
- "main:app"
@ -63,6 +65,8 @@ services:
context: backend
dockerfile: Dockerfile
container_name: worker
extra_hosts:
- "host.docker.internal:host-gateway"
command: celery -A celery_worker worker -l info
restart: always
depends_on:
@ -77,6 +81,8 @@ services:
context: backend
dockerfile: Dockerfile
container_name: beat
extra_hosts:
- "host.docker.internal:host-gateway"
command: celery -A celery_worker beat -l info
restart: always
depends_on:
@ -91,6 +97,8 @@ services:
context: backend
dockerfile: Dockerfile
container_name: flower
extra_hosts:
- "host.docker.internal:host-gateway"
command: celery -A celery_worker flower -l info --port=5555
restart: always
depends_on: