File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818
1919env :
2020 DOCKER_VERSION : v27.3.1
21+ DOCKER_BUILD_SUMMARY : false
2122
2223jobs :
2324 main :
@@ -311,4 +312,32 @@ jobs:
311312 -
312313 name : List contexts
313314 run : |
314- docker context ls
315+ docker context ls
316+
317+ tcp :
318+ runs-on : ${{ matrix.os }}
319+ strategy :
320+ fail-fast : false
321+ matrix :
322+ os :
323+ - ubuntu-latest
324+ # - macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
325+ - macos-13
326+ - windows-latest
327+ steps :
328+ -
329+ name : Checkout
330+ uses : actions/checkout@v4
331+ -
332+ name : Set up Docker
333+ id : setup_docker
334+ uses : ./
335+ with :
336+ version : ${{ env.DOCKER_VERSION }}
337+ tcp-port : 2378
338+ -
339+ name : Check docker info through TCP
340+ run : |
341+ docker info
342+ env :
343+ DOCKER_HOST : ${{ steps.setup_docker.outputs.tcp }}
You can’t perform that action at this time.
0 commit comments