graph-theory / run_docker.ps1
ghh1125's picture
Upload 14 files
22ea217 verified
$ErrorActionPreference = "Stop"
$portConfig = Get-Content -Raw -Path "port.json" | ConvertFrom-Json
$port = [int]$portConfig.port
$image = "graph-theory-mcp"
docker build -t $image .
docker run --rm -it -p "${port}:${port}" $image