mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
15 lines
308 B
Bash
Executable File
15 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -f pat ]; then
|
|
echo "Error: file pat not found"
|
|
exit 1
|
|
fi
|
|
|
|
docker run \
|
|
-e VSTS_ACCOUNT="monacotools" \
|
|
-e VSTS_TOKEN="$(cat pat)" \
|
|
-e VSTS_AGENT="tb-lnx-local" \
|
|
-e VSTS_POOL=linux \
|
|
-e VSTS_WORK="/var/vsts/work" \
|
|
--name "tb-lnx-local" \
|
|
-it joaomoreno/vscode-vso-agent |