From e5e28d16a58f7c97bf0df239c31394a611bc69d5 Mon Sep 17 00:00:00 2001 From: Nitrousoxide Date: Thu, 27 Feb 2025 14:28:53 +0000 Subject: [PATCH] Update examples/docker-compose/README.md (#494) The container for the "docker-cli" label defined in the compose file does not contain the bash shell in it, and the forgejo runner defaults to that, with apparently no fall-back to sh if bash is not found in the $PATH. Thus, the demo_docker.yml example will fail to run unless you specifically define the shell to sh. This corrects the example to specifically use sh instead of bash for the docker-cli example. Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/494 Reviewed-by: earl-warren Co-authored-by: Nitrousoxide Co-committed-by: Nitrousoxide --- examples/docker-compose/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/docker-compose/README.md b/examples/docker-compose/README.md index 104a8fe..5ffa339 100644 --- a/examples/docker-compose/README.md +++ b/examples/docker-compose/README.md @@ -97,6 +97,7 @@ jobs: runs-on: docker-cli steps: - run: docker info + shell: sh ``` A wait loop expects the status of the check associated with the