deepTools / run_docker.ps1
ghh1125's picture
Upload 14 files
a0477b5 verified
Raw
History Blame Contribute Delete
242 Bytes
$ErrorActionPreference = "Stop"
$portConfig = Get-Content -Raw -Path "port.json" | ConvertFrom-Json
$port = [int]$portConfig.port
$imageName = "deepTools-mcp"
docker build -t $imageName .
docker run --rm -it -p "${port}:${port}" $imageName