This commit is contained in:
Sidney Marvin Fricke
2026-06-24 11:48:08 +02:00
commit 68c418400e
5 changed files with 439 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
services:
mcp-bash:
build:
context: ./server
dockerfile: Dockerfile
container_name: mcp-bash
restart: unless-stopped
ports:
- "8000:8000"
volumes:
# shared workspace: host files are visible inside the PTY sessions
- ./workspace:/workspace
environment:
- PYTHONUNBUFFERED=1
# tty: true keeps stdin open for ptyprocess inside the container
tty: true