From c747e9da63dfbc391465d99f6eff3a259a178112 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 3 Aug 2026 14:21:57 +0000 Subject: [PATCH] fix: add Docker named volume for persistent data --- python/deploy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/deploy.py b/python/deploy.py index 7da5bc0..99c75ec 100644 --- a/python/deploy.py +++ b/python/deploy.py @@ -57,6 +57,7 @@ def deploy_container(name, token, cloud, port, upstream_ip, upstream_port, label --name {container} \ --restart unless-stopped \ -p {port}:{port} \ + -v wallarm-data-{name}:/opt/wallarm \ -p {monitoring_port}:{monitoring_port} \ -e WALLARM_API_TOKEN={token} \ -e WALLARM_API_HOST={api_host} \