Files
docker-bash-mcp/docker-compose.yml
T

21 lines
414 B
YAML

services:
mcp-bash:
image: python:3.12-slim
container_name: mcp-bash
restart: unless-stopped
working_dir: /workspace
command: bash /app/startup.sh
ports:
- "8000:8000"
- "3000:3000"
volumes:
- ./server:/app:ro
- ${WORKSPACE_PATH:-.}:/workspace
- pip-cache:/root/.cache/pip
environment:
- PYTHONUNBUFFERED=1
tty: true
volumes:
pip-cache: