From a6f2d4c4b249b4928d4dea22a905da752e4b2910 Mon Sep 17 00:00:00 2001 From: poprhythm Date: Thu, 26 Feb 2026 16:46:28 +0000 Subject: [PATCH] Mount model_cache volume for Obico ML model weights Model weights (~193MB each, darknet + onnx) are stored at /srv/obico/config/model_cache/ and mounted at /model_cache in the container since they are not baked into the imagegenius image. --- obico/docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/obico/docker-compose.yml b/obico/docker-compose.yml index 29753a0..30a0d71 100644 --- a/obico/docker-compose.yml +++ b/obico/docker-compose.yml @@ -30,6 +30,7 @@ services: - ACCOUNT_ALLOW_SIGN_UP=False volumes: - /srv/obico/config:/config + - /srv/obico/config/model_cache:/model_cache ports: - "3334:3334" deploy: