Add mcp-gateway/linkedin-mcp/docker-compose.yml
This commit is contained in:
parent
b9ca0fdf54
commit
60fd702a41
1 changed files with 21 additions and 0 deletions
21
mcp-gateway/linkedin-mcp/docker-compose.yml
Normal file
21
mcp-gateway/linkedin-mcp/docker-compose.yml
Normal file
|
|
@ -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"
|
||||||
Loading…
Reference in a new issue