Files
nginx-proxy-manager-mcp/compose.yaml
Ben 37ad76f012 chore: Use pre-built Docker image from GHCR
- Update compose.yaml to use ghcr.io/b3nw/nginx-proxy-manager-mcp:latest
- Add Docker quick start section to README
- Users can now deploy without cloning the repo
2025-12-18 03:47:35 +00:00

53 lines
1.4 KiB
YAML

# Docker Compose configuration for NPM MCP Server
services:
npm-mcp:
image: ghcr.io/b3nw/nginx-proxy-manager-mcp:latest
container_name: npm-mcp
restart: unless-stopped
ports:
- "8000:8000"
environment:
# Required: NPM API connection
- NPM_API_URL=http://nginx-proxy-manager:81/api
- NPM_IDENTITY=admin@example.com
- NPM_SECRET=changeme
# Optional: Server configuration
- NPM_MCP_TRANSPORT=http
- NPM_MCP_HOST=0.0.0.0
- NPM_MCP_PORT=8000
# Uncomment to use .env file instead of inline environment
# env_file:
# - .env
healthcheck:
test: ["CMD", "python", "-c", "import httpx; httpx.get('http://localhost:8000/mcp', timeout=5)"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
# Example: Running alongside NPM in same compose stack
# services:
# nginx-proxy-manager:
# image: jc21/nginx-proxy-manager:latest
# ports:
# - "80:80"
# - "443:443"
# - "81:81"
# volumes:
# - npm_data:/data
# - npm_letsencrypt:/etc/letsencrypt
#
# npm-mcp:
# image: ghcr.io/b3nw/nginx-proxy-manager-mcp:latest
# environment:
# - NPM_API_URL=http://nginx-proxy-manager:81/api
# - NPM_IDENTITY=admin@example.com
# - NPM_SECRET=changeme
# depends_on:
# - nginx-proxy-manager
#
# volumes:
# npm_data:
# npm_letsencrypt: