You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I occasionally get this error when multiple workflows are running at once - Rerunning fixes it but would rather not need to rerun every time. I am using the following config:
services:
worker:
image: myoung34/github-runner:latest
restart: always
security_opt:
# needed on SELinux systems to allow docker container to manage other docker containers
- label:disable
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
- '/runner/data:/runner/data' # required for persistence
- '/tmp/runner:/tmp/runner'
# note: a quirk of docker-in-docker is that this path
# needs to be the same path on host and inside the container,
# docker mgmt cmds run outside of docker but expect the paths from within
deploy:
mode: replicated
replicas: 3
env_file:
- stack.env
Looks like something that's out of scope for the runner, all I do is simply package it. I'd suggest reaching out upstream with an issue on the actual runners project
I occasionally get this error when multiple workflows are running at once - Rerunning fixes it but would rather not need to rerun every time. I am using the following config:
The text was updated successfully, but these errors were encountered: