From 60fd702a415cb6182be90d45855541da5b03592d Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:29:41 -0400 Subject: [PATCH] Add mcp-gateway/linkedin-mcp/docker-compose.yml --- mcp-gateway/linkedin-mcp/docker-compose.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 mcp-gateway/linkedin-mcp/docker-compose.yml diff --git a/mcp-gateway/linkedin-mcp/docker-compose.yml b/mcp-gateway/linkedin-mcp/docker-compose.yml new file mode 100644 index 0000000..b57227c --- /dev/null +++ b/mcp-gateway/linkedin-mcp/docker-compose.yml @@ -0,0 +1,21 @@ +# Add this service to your main docker-compose.yml in the gateway root +# This is a reference snippet for the LinkedIn MCP service + +mcp-linkedin: + build: ./linkedin-mcp + container_name: mcp-linkedin + ports: + - "8400:3000" + volumes: + # Mount your local LinkedIn profile (must be created first with --login) + - ~/.linkedin-mcp/profile:/root/.linkedin-mcp/profile + environment: + - LOG_LEVEL=INFO + - CHROME_PATH=/usr/bin/chromium-browser + - TIMEOUT=10000 + # Only restart if profile exists locally + restart: unless-stopped + networks: + - mcp-network + labels: + - "mcp.service=linkedin"