File size: 418 Bytes
6a7089a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | {
"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"
}
}
}
|