We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff80606 commit f9cc86cCopy full SHA for f9cc86c
1 file changed
.github/workflows/test-integrations-cloud.yml
@@ -30,7 +30,7 @@ jobs:
30
timeout-minutes: 30
31
runs-on: ${{ matrix.os }}
32
env:
33
- DOCKER_HOST: tcp://docker:2375
+ DOCKER_HOST: tcp://127.0.0.1:2375
34
strategy:
35
fail-fast: false
36
matrix:
@@ -44,6 +44,10 @@ jobs:
44
docker:
45
image: docker:24.0.9-dind # Required for Docker network management
46
options: --privileged # Required for Docker-in-Docker operations
47
+ env:
48
+ DOCKER_TLS_CERTDIR: ""
49
+ ports:
50
+ - 2375:2375
51
# Use Docker container only for Python 3.6
52
container: ${{ matrix.python-version == '3.6' && 'python:3.6' || null }}
53
steps:
0 commit comments