Skip to content

Commit 9c0e266

Browse files
committed
Use Docker in Docker official image
1 parent 48f0f76 commit 9c0e266

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
agents:
2+
image: "docker.elastic.co/appex-qa/qaf:latest@sha256:55a198946ab24e6fcbe98a83a10cea1c695fb006b23afb7516e99b59499e5eb2"
23
memory: "4G"
34

45
steps:
6+
- label: ":pipeline: Install Docker"
7+
key: install_docker
8+
command:
9+
- apt update
10+
- apt install docker.io
11+
512
- label: ":rocket: Deploy Geneve tests"
613
key: geneve_tests
14+
depends_on: install_docker
715
command:
8-
- python3 -m pip install -r requirements.txt
9-
- ./scripts/test-stacks.sh $STACK_VERSION ${TEST_EXTRA_PARAMS:---online -v --queries}
16+
- python3 -m pip install -r requirements.txt ;
17+
- ./scripts/test-stacks.sh $STACK_VERSION ${TEST_EXTRA_PARAMS:---online -v --queries} ;
18+
plugins:
19+
- docker#v5.12.0:
20+
image: "docker:latest"
21+
volumes:
22+
- "/var/run/docker.sock:/var/run/docker.sock"

0 commit comments

Comments
 (0)