Support automatically available docker functionality #31
Labels
No Label
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
Copied from Github
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cerc-io/hosting#31
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently because Gitea's act code overrides the execution container's entrypoint, we are not able to initialize the docker deamon transparently. Current workaround is to explicitly start the daemon as a step in each job that uses docker.
This can be fixed in the upstream code by using a command in place of overriding the entrypoint, allowing us to use our own entrypoint script to perform docker start.
In addition, the DOCKER_HOST environment variable needs to end up set correctly.
Code in Gitea that overrides the entrypoint for the container: https://gitea.com/gitea/act/src/branch/main/pkg/runner/run_context.go#L351
We could try changing that to not override the entrypoint but instead pass the sleep loop as a command