From 164739c3f831a52fec74895f68626bc7cd4e4d69 Mon Sep 17 00:00:00 2001 From: Bart Sjerps Date: Thu, 28 May 2026 10:33:30 +0200 Subject: [PATCH] initial --- compose.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 compose.yml diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..9f3f829 --- /dev/null +++ b/compose.yml @@ -0,0 +1,14 @@ +services: + dockhand: + image: fnsys/dockhand:latest + container_name: dockhand + restart: unless-stopped + ports: + - 8082:3000 + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - dockhand_data:/app/data + - /opt/docker:/docker + +volumes: + dockhand_data: