From 682d884c566c5a3b24468c772ef71474c0e38c90 Mon Sep 17 00:00:00 2001 From: kst-morozov Date: Thu, 24 Oct 2024 12:34:10 +0200 Subject: [PATCH] fix volumes --- tests/integration/modules/compose.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/modules/compose.py b/tests/integration/modules/compose.py index 9ae7e00a..29f7c934 100644 --- a/tests/integration/modules/compose.py +++ b/tests/integration/modules/compose.py @@ -110,6 +110,7 @@ def _generate_service_config( volumes = [ "../:/code:rw", + "../ch_backup:/var/tmp/ch-backup/ch_backup:rw", ] if os.path.exists(os.path.join(staging_dir, f"images/{instance_name}/config")): volumes.append(f"./images/{instance_name}/config:/config:rw")