From 82d1c83df44c334fa9a0b71b4e507c9eb4acbbec Mon Sep 17 00:00:00 2001 From: sascha Date: Fri, 3 Apr 2026 15:20:54 +0200 Subject: [PATCH] initial: mcp-dockhand compose --- .gitignore | 1 + compose.yaml | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 .gitignore create mode 100644 compose.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c49bd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..fce3a34 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,9 @@ +services: + mcp-dockhand: + image: ghcr.io/strausmann/mcp-dockhand:latest + container_name: mcp-dockhand + restart: unless-stopped + ports: + - "8080:8080" + env_file: + - .env