Skip to content

Commit 7e8dbec

Browse files
committed
added rq
1 parent 264353f commit 7e8dbec

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.github/workflows/backend_checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ jobs:
6060
docker compose -f compose.ray.yml build
6161
docker compose -f compose.ray.yml up --wait
6262
fi
63-
COMPOSE_PROFILES="weaviate,background,backend" docker compose build
64-
COMPOSE_PROFILES="weaviate,background" docker compose up --wait --quiet-pull
63+
COMPOSE_PROFILES="weaviate,background,rq,backend" docker compose build
64+
COMPOSE_PROFILES="weaviate,background,rq" docker compose up --wait --quiet-pull
6565
- name: Check 1 - pytest runs without errors
6666
working-directory: docker
6767
run: |
@@ -89,7 +89,7 @@ jobs:
8989
working-directory: docker
9090
run: |
9191
source .env
92-
COMPOSE_PROFILES="weaviate,background,backend" docker compose up --wait --quiet-pull
92+
COMPOSE_PROFILES="weaviate,background,rq,backend" docker compose up --wait --quiet-pull
9393
- name: Check 6 - Test End-2-End importer script
9494
working-directory: backend
9595
env:

.github/workflows/frontend_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
env:
1616
API_WORKERS: 1
1717
VITE_APP_SERVER: http://localhost:13120
18-
COMPOSE_PROFILES: "weaviate,background,backend,frontend"
18+
COMPOSE_PROFILES: "weaviate,background,rq,backend,frontend"
1919
BACKEND_HAS_CHANGED: false
2020
RAY_HAS_CHANGED: false
2121
steps:

docker/.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
COMPOSE_PROJECT_NAME=demo
88
# remove profiles to disable containers
99
# dependencies are as follows:
10-
# weaviate < background < backend < frontend
10+
# weaviate < background < rq < backend < frontend
1111
# you can remove profiles from right to left
12-
COMPOSE_PROFILES=weaviate,background,backend,frontend
12+
COMPOSE_PROFILES=weaviate,background,rq,backend,frontend
1313
# Docker tag to use for pulling the backend and celery containers
1414
DATS_BACKEND_DOCKER_VERSION=1.7.0
1515
# Docker tag to use for pulling the ray container

docker/compose.override.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ services:
3131
- "${WEAVIATEAPP_EXPOSED:-13135}:8501"
3232
extra_hosts:
3333
- "localhost:host-gateway"
34+
profiles:
35+
- weaviate
3436

3537
elasticsearch:
3638
volumes:

docker/compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,8 @@ services:
227227
- "${RQ_DASHBOARD_EXPOSED:-13136}:9181"
228228
networks:
229229
- dats_network
230+
profiles:
231+
- rq
230232

231233
dats-backend-api:
232234
image: uhhlt/dats_backend:${DATS_BACKEND_DOCKER_VERSION:-debian_dev_latest}

0 commit comments

Comments
 (0)