forked from spencerm/freshservice-claude
16 lines
408 B
YAML
16 lines
408 B
YAML
|
|
services:
|
||
|
|
freshservice-mcp:
|
||
|
|
build: .
|
||
|
|
image: freshservice-mcp
|
||
|
|
container_name: freshservice-mcp
|
||
|
|
restart: unless-stopped
|
||
|
|
# Host 3839 -> container 3838 (3838 is taken by sharepoint-lists).
|
||
|
|
ports:
|
||
|
|
- "3839:3838"
|
||
|
|
env_file:
|
||
|
|
- .env
|
||
|
|
# .env must define:
|
||
|
|
# FRESHSERVICE_DOMAIN=pesco
|
||
|
|
# FRESHSERVICE_API_KEY=...
|
||
|
|
# MCP_AUTH_TOKEN=... (openssl rand -hex 32)
|