We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07b60c8 commit dd3f49bCopy full SHA for dd3f49b
bin/setup-folders.sh
@@ -1,6 +1,7 @@
1
#!/bin/sh
2
cd "$(dirname "$0}")" || exit
3
mkdir -p ../docker/backend_repo
4
+mkdir -p ../docker/api_cache
5
mkdir -p ../docker/celery_cache
6
mkdir -p ../docker/rq_cache
7
mkdir -p ../docker/ollama_cache
docker/compose.yml
@@ -271,8 +271,10 @@ services:
271
OIDC_CLIENT_SECRET: ${OIDC_CLIENT_SECRET}
272
OIDC_SERVER_METADATA_URL: ${OIDC_SERVER_METADATA_URL}
273
IS_STABLE: ${IS_STABLE:-false}
274
+ NUMBA_CACHE_DIR: /api_cache/numba_cache
275
volumes:
276
- ./backend_repo:/tmp/dats
277
+ - ./api_cache:/api_cache
278
depends_on:
279
postgres:
280
condition: service_healthy
0 commit comments