We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b749d commit aecde2eCopy full SHA for aecde2e
.github/workflows/testcontainers.yml
.github/workflows/unit-tests.yml
@@ -8,7 +8,13 @@ jobs:
8
name: "🧪 Unit Tests"
9
runs-on: ubuntu-latest
10
steps:
11
- - name: 🔧 Configure docker
+ - name: 🔧 Disable IPv6
12
+ run: |
13
+ sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1
14
+ sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1
15
+ sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=1
16
+
17
+ - name: 🔧 Configure docker address pool
18
run: |
19
CONFIG='{
20
"default-address-pools" : [
@@ -24,7 +30,9 @@ jobs:
24
30
}'
25
31
mkdir -p /etc/docker
26
32
echo "$CONFIG" | sudo tee /etc/docker/daemon.json
27
- sudo systemctl restart docker
33
34
+ - name: 🔧 Restart docker daemon
35
+ run: sudo systemctl restart docker
28
36
29
37
- name: ⬇️ Checkout repo
38
uses: actions/checkout@v4
0 commit comments