Initial commit: Outline MCP server with hybrid light pattern
Some checks failed
Build and Push Docker Image / build (push) Failing after 0s

This commit is contained in:
Ben
2025-12-30 19:36:17 +00:00
parent 6089596202
commit 5da443cef7
9 changed files with 1110 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
services:
outline-mcp:
build: .
ports:
- "${PORT:-8100}:8000"
env_file:
- .env
restart: unless-stopped
healthcheck:
test: ["CMD", "python", "-c", "import httpx; httpx.get('http://localhost:8000/health').raise_for_status()"]
interval: 30s
timeout: 10s
retries: 3
start_period: 5s