From 5ec5a44b3d691c1a2c1332e6b0aa73505b0953aa Mon Sep 17 00:00:00 2001 From: cytopia Date: Thu, 17 Nov 2022 15:20:01 +0100 Subject: [PATCH] Document use-case --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9c8b9cc..12fb709 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,9 @@ jobs: pause: 10 command: | docker build -t test . + # Builing docker sometimes fails on GH Action runner due to network issues. + # We ensure that forwarding is reenabled and the daemon is restarted + # Before retrying the docker build command fail_command: | sudo sysctl -w net.ipv4.ip_forward=1 \ && sudo systemctl restart docker \