Skip to content

Commit d2a7007

Browse files
committed
Change Build Driver To 'docker'
The default build driver for the used buildx action is `docker-container`. This means the image is build within a buildkit container with no access to images loaded into docker. This is a problem because we need to import the base images for parser-sdk and hook-sdk to build the images for parsers and hooks without using a container registry caching these base images. To fix this I changed the build driver to `docker` to build the image with the docker daemon. See: https://github.com/docker/setup-buildx-action github.com/docker/buildx/blob/master/docs/reference/buildx_create.md#driver Signed-off-by: Yannik Fuhrmeister <yannik.fuhrmeister@iteratec.com>
1 parent a7577a5 commit d2a7007

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,8 @@ jobs:
332332
333333
- name: Set up Docker Buildx
334334
uses: docker/setup-buildx-action@v1
335+
with:
336+
driver: docker
335337

336338
- name: Login to DockerHub
337339
uses: docker/login-action@v1
@@ -430,6 +432,8 @@ jobs:
430432
431433
- name: Set up Docker Buildx
432434
uses: docker/setup-buildx-action@v1
435+
with:
436+
driver: docker
433437

434438
- name: Login to DockerHub
435439
uses: docker/login-action@v1
@@ -516,6 +520,8 @@ jobs:
516520
517521
- name: Set up Docker Buildx
518522
uses: docker/setup-buildx-action@v1
523+
with:
524+
driver: docker
519525

520526
- name: Login to DockerHub
521527
uses: docker/login-action@v1

0 commit comments

Comments
 (0)