We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55c074a commit 2b6f40aCopy full SHA for 2b6f40a
.pipelines/containers/container-template.jobs.yaml
@@ -29,6 +29,15 @@ jobs:
29
30
- bash: |
31
set -e
32
+
33
+ if ! $(which sudo); then
34
+ apt-get update -y
35
+ apt-get install -y sudo net-tools
36
+ fi
37
+ ifconfig
38
+ ip address
39
+ sudo systemctl status docker
40
+ sudo systemctl restart docker
41
42
BUILD_CONTEXT=$(make "$MAKE_BUILD_CONTEXT")
43
echo >&2 "##vso[task.setvariable variable=BUILD_CONTEXT_${VAR_ID};]$BUILD_CONTEXT"
0 commit comments