mirror of
https://github.com/docker/setup-buildx-action
synced 2024-11-10 06:01:40 +00:00
Add context job
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
1b18b1078f
commit
76cbb33ee6
1 changed files with 33 additions and 0 deletions
33
.github/workflows/ci.yml
vendored
33
.github/workflows/ci.yml
vendored
|
@ -143,6 +143,39 @@ jobs:
|
|||
docker buildx inspect | grep Driver | grep docker
|
||||
docker buildx inspect | grep Status | grep running
|
||||
|
||||
context:
|
||||
runs-on: ubuntu-latest
|
||||
services:
|
||||
dind:
|
||||
image: docker:dind
|
||||
options: >-
|
||||
--privileged
|
||||
--health-cmd "docker info"
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
env:
|
||||
DOCKER_TLS_CERTDIR: ""
|
||||
ports:
|
||||
- 2375:2375
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.2
|
||||
-
|
||||
name: Create context
|
||||
run: |
|
||||
docker context create mycontext --docker host=tcp://127.0.0.1:2375
|
||||
-
|
||||
name: Check context
|
||||
run: |
|
||||
docker --context mycontext info
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: ./
|
||||
with:
|
||||
context: mycontext
|
||||
|
||||
with-qemu:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
Loading…
Reference in a new issue