Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Name builder instance to avoid multiple ones on self-hosted runners #152

Merged
merged 1 commit into from
Oct 30, 2023

Conversation

whoan
Copy link
Owner

@whoan whoan commented Oct 30, 2023

Close #151

If you are running self-hosted runners, you may need to clean some stale builder instances created by v8.0.0 of the action. To do so, you can run something like this (review and use with caution):

docker buildx ls \
    | grep -E "^[^ ].+ docker-container" \
    | while read -r instance_name rest; do docker buildx rm "$instance_name"; done

FYI @milandufek ^

v8.0.2 was released with the fix

@whoan whoan merged commit 272668a into master Oct 30, 2023
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Buildx images are not cleaned-up on self-hosted runner
1 participant