First data

This commit is contained in:
Marco 2026-04-17 14:08:19 +02:00
commit f5a209bb4a
13 changed files with 811 additions and 0 deletions

24
mcp/opnsense/compose.yml Normal file
View file

@ -0,0 +1,24 @@
services:
opnsense-mcp:
build:
context: .
args:
OPNSENSE_MCP_VERSION: ${OPNSENSE_MCP_VERSION:-0.8.2}
SUPERGATEWAY_VERSION: ${SUPERGATEWAY_VERSION:-3.4.3}
container_name: opnsense-mcp
restart: unless-stopped
env_file:
- .env
ports:
- "${MCP_HTTP_PORT:-8811}:8000"
volumes:
- type: bind
source: ${HOST_SSH_KEY_PATH}
target: /run/secrets/opnsense_ssh_key
read_only: true
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:8000/healthz"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s