Skip to content

Add Docker deployment documentation#4

Merged
r33drichards merged 3 commits into
masterfrom
copilot/add-docker-deployment-instructions
Jan 25, 2026
Merged

Add Docker deployment documentation#4
r33drichards merged 3 commits into
masterfrom
copilot/add-docker-deployment-instructions

Conversation

Copilot AI commented Jan 25, 2026

Copy link
Copy Markdown
Contributor

Documents deployment using the pre-built wholelottahoopla/mcp-exec image from Docker Hub (supports amd64/arm64).

Changes

  • Docker run examples - Basic HTTP transport setup and custom port/volume configurations
  • Docker Compose template - Production-ready configuration with persistent volumes and restart policy
  • Compatibility notes - Both Docker Compose v1 (docker-compose) and v2 (docker compose) syntax

Example

docker run -d \
  --name mcp-exec \
  -p 8080:8080 \
  -v mcp-exec-data:/data \
  wholelottahoopla/mcp-exec:latest \
  --http-port 8080 \
  --bind-address 0.0.0.0 \
  --directory-path /data

Note: Docker deployments require HTTP transport (stdio incompatible with containers).

Original prompt

Adds Docker deployment instructions using the pre-built wholelottahoopla/mcp-exec image from Docker Hub.


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 2 commits January 25, 2026 09:21
Co-authored-by: r33drichards <57335981+r33drichards@users.noreply.github.com>
… Docker Compose v1/v2 compatibility notes

Co-authored-by: r33drichards <57335981+r33drichards@users.noreply.github.com>
Copilot AI changed the title [WIP] Add Docker deployment instructions for wholelottahoopla/mcp-exec Add Docker deployment documentation Jan 25, 2026
Copilot AI requested a review from r33drichards January 25, 2026 09:23
@github-actions

Copy link
Copy Markdown

🐳 Docker Image Ready

Multi-arch image (recommended):

docker pull wholelottahoopla/mcp-exec:675b086e046bd75e2ddec67923953a0bececbfcd

Run with HTTP server:

docker run -d -p 8080:8080 -v /var/lib/mcp-exec:/logs \
  wholelottahoopla/mcp-exec:675b086e046bd75e2ddec67923953a0bececbfcd \
  --http-port 8080 --bind-address 0.0.0.0 --directory-path /logs
Architecture-specific tags

AMD64:

docker pull wholelottahoopla/mcp-exec:675b086e046bd75e2ddec67923953a0bececbfcd-amd64

ARM64:

docker pull wholelottahoopla/mcp-exec:675b086e046bd75e2ddec67923953a0bececbfcd-arm64

Built from commit 675b086

@r33drichards r33drichards marked this pull request as ready for review January 25, 2026 09:44
@r33drichards r33drichards merged commit 16f0a75 into master Jan 25, 2026
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants