From 04c213ceb6e567db2a0d1d79fa674f841008d450 Mon Sep 17 00:00:00 2001 From: Stephen Lawrence Date: Mon, 23 Feb 2026 17:55:50 +0000 Subject: [PATCH] VISSR: update to VISSR v1.0+4645ea Update the VISSR version used by CDSP to the latest commit: 1) Update the git submodule to commit 4645ea which contains some needed fixes to the recent VISSR v1.0 release. 2) Update the reference CDSP docker compose to support new unix domain sockets Since VISSR commit 7447c1, which CDSP was using previously, the upstream project has added Unix domain socket support which locates sockets in the directory /var/tmp/vissv2/. Add this directory to the list of VISSR container volumes listed in the 'tmp' service used by VISSR, so that the VISSR components can find each other. Signed-off-by: Stephen Lawrence --- cdsp/vissr | 2 +- docker/docker-compose-cdsp.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cdsp/vissr b/cdsp/vissr index 7447c11..4645ea2 160000 --- a/cdsp/vissr +++ b/cdsp/vissr @@ -1 +1 @@ -Subproject commit 7447c113ce4ef1c077347e080221eb4747a31f68 +Subproject commit 4645ea262594b20f9337794059210fa3b4139116 diff --git a/docker/docker-compose-cdsp.yml b/docker/docker-compose-cdsp.yml index 5a62d1a..47c36b6 100644 --- a/docker/docker-compose-cdsp.yml +++ b/docker/docker-compose-cdsp.yml @@ -100,6 +100,7 @@ services: chmod -R 777 /tmp/docker/ volumes: - /tmp/docker/ + - /var/tmp/vissv2/ redis: image: redis