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 c6fa8b7 commit 8f4ebddCopy full SHA for 8f4ebdd
1 file changed
.github/workflows/unit-tests.yml
@@ -8,6 +8,24 @@ jobs:
8
name: "🧪 Unit Tests"
9
runs-on: ubuntu-latest
10
steps:
11
+ - name: 🔧 Configure docker address pool
12
+ run: |
13
+ CONFIG='{
14
+ "default-address-pools" : [
15
+ {
16
+ "base" : "172.17.0.0/12",
17
+ "size" : 20
18
+ },
19
20
+ "base" : "192.168.0.0/16",
21
+ "size" : 24
22
+ }
23
+ ]
24
+ }'
25
+ mkdir -p /etc/docker
26
+ echo "$CONFIG" | sudo tee /etc/docker/daemon.json
27
+ sudo systemctl restart docker
28
+
29
- name: ⬇️ Checkout repo
30
uses: actions/checkout@v4
31
with:
0 commit comments