All checks were successful
Build and Push Outline MCP Docker Image / build (push) Successful in 6s
15 lines
343 B
YAML
15 lines
343 B
YAML
services:
|
|
outline-mcp:
|
|
build: .
|
|
ports:
|
|
- "${PORT:-8010}: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
|