openweb / pinchtab /.devcontainer /devcontainer.json
Leon4gr45's picture
Upload folder using huggingface_hub
f0988d8 verified
Raw
History Blame Contribute Delete
418 Bytes
{
"name": "PinchTab",
"image": "mcr.microsoft.com/devcontainers/go:1.23",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"postCreateCommand": "docker compose up -d && go build -o pinchtab ./cmd/pinchtab && echo 'Done! Run: ./pinchtab health'",
"forwardPorts": [9867],
"portsAttributes": {
"9867": {
"label": "PinchTab",
"onAutoForward": "notify"
}
}
}