openapi-mcp-server/docker-compose.yml
Tom Foster 6db4ea8e96
All checks were successful
CI / Build and push Docker image (push) Successful in 1m29s
Initial commit
2025-06-16 19:17:09 +01:00

19 lines
464 B
YAML

services:
tools:
build:
context: .
dockerfile: Dockerfile
environment:
- MEMORY_FILE_PATH=/data/memory.json
- SEARXNG_BASE_URL=http://searxng:8080
image: git.tomfos.tr/tom/openapi-mcp-server:latest
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/health"]
interval: 30s
timeout: 10s
retries: 3
ports:
- "8080:80"
restart: unless-stopped
volumes:
- ./data:/data:rw