All checks were successful
CI / Build and push Docker image (push) Successful in 1m29s
19 lines
464 B
YAML
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
|