update example for docker-compose to allow fix 502 errors in case Gitea not yet ready on runner startup

This commit is contained in:
Schallbert 2024-09-25 21:49:58 +02:00
parent b075e3a1d5
commit 2a590c1c5d

View file

@ -5,12 +5,22 @@
gitea:
image: gitea/gitea
...
healthcheck:
# checks availability of Gitea's front-end with curl
test: ["CMD", "curl", "-f", "<instance_url>"]
interval: 10s
retries: 3
start_period: 30s
timeout: 10s
runner:
image: gitea/act_runner
restart: always
depends_on:
- gitea
gitea:
# required so runner can attach to gitea, see "healthcheck"
condition: service_healthy
restart: true
volumes:
- ./data/act_runner:/data
- /var/run/docker.sock:/var/run/docker.sock