From a04079b558fe69a406dd8487fd87ceb955e4dea3 Mon Sep 17 00:00:00 2001 From: Ben Martin Date: Sat, 27 Jul 2024 12:29:03 +0000 Subject: [PATCH] feat: Add bind mount for Docker socket in uptime module --- modules/uptime/jobspec.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/uptime/jobspec.json b/modules/uptime/jobspec.json index 816d678..12109b5 100644 --- a/modules/uptime/jobspec.json +++ b/modules/uptime/jobspec.json @@ -18,6 +18,11 @@ "type": "volume", "target": "/app/data", "source": "kuma-data" + }, + { + "type": "bind", + "target": "/var/run/docker.sock", + "source": "/var/run/docker.sock" } ] },