fix: avoid grep pattern being treated as option

This commit is contained in:
Valerio Lomanto 2025-02-24 09:42:25 +01:00
parent 904b78b44a
commit 03b58db18a
Signed by: verglasz
GPG key ID: 33263D8CFCFEC285

View file

@ -54,7 +54,7 @@ services:
- /opt/forgejo-runner/docker_certs:/certs
command: >-
bash -ec '
if ! grep "--mount type=bind,source=/certs/client,target=/certs/client,readonly" config.yml > /dev/null; then
if ! grep -e "--mount type=bind,source=/certs/client,target=/certs/client,readonly" config.yml > /dev/null; then
sed -i "\|options:| a \ \ \ \ --mount type=bind,source=/certs/client,target=/certs/client,readonly" config.yml ;
fi ;
forgejo-runner --config config.yml daemon ;