docker-compose example: do not use depends_on

Wait for the .runner file to exist instead as a proof that the
runner is ready to accept a job
This commit is contained in:
Earl Warren 2024-04-07 20:34:23 +02:00
parent e385811e74
commit 82b6df801f
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
2 changed files with 4 additions and 7 deletions

View file

@ -7,9 +7,6 @@ services:
image: alpine:3.19
links:
- forgejo
depends_on:
runner-register:
condition: service_completed_successfully
command: >-
sh -ec '
apk add --quiet git curl jq ;

View file

@ -84,10 +84,10 @@ services:
DOCKER_HOST: tcp://docker:2376
DOCKER_CERT_PATH: /certs/client
DOCKER_TLS_VERIFY: "1"
depends_on:
runner-register:
condition: service_completed_successfully
volumes:
- /srv/runner-data:/data
- docker_certs:/certs
command: "forgejo-runner --config config.yml daemon"
command: >-
bash -c '
while : ; do test -w .runner && forgejo-runner --config config.yml daemon ; sleep 1 ; done
'