act_runner/internal/pkg/config
Thomas E Lackey 5a8134410d
All checks were successful
goreleaser / goreleaser (push) Successful in 7m43s
checks / check and test (push) Successful in 1m34s
Run as a container (#8) including Docker-in-Docker. (#84)
This adds a very simple Dockerfile and run script for running `act_runner` as a container.

It also allows setting `Privileged` and `ContainerOptions` flags via the new config file when spawning task containers.  The combination makes it possible to use Docker-in-Docker (which requires `privileged` mode) as well as pass any other options child Docker containers may require.

For example, if Gitea is running in Docker on the same machine, for the `checkout` action to behave as expected from a task container launched by `act_runner`, it might be necessary to map the hostname via something like:

```
container:
  network_mode: bridge
  privileged: true
  options: --add-host=my.gitea.hostname:host-gateway
```

> NOTE: Description updated to reflect latest code.
> NOTE: Description updated to reflect latest code (again).

Reviewed-on: #84
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Reviewed-by: Jason Song <i@wolfogre.com>
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2023-04-11 10:58:12 +08:00
..
config.example.yaml Run as a container (#8) including Docker-in-Docker. (#84) 2023-04-11 10:58:12 +08:00
config.go Run as a container (#8) including Docker-in-Docker. (#84) 2023-04-11 10:58:12 +08:00
deprecated.go Refactor to new framework (#98) 2023-04-04 21:32:04 +08:00
embed.go Refactor to new framework (#98) 2023-04-04 21:32:04 +08:00
registration.go Refactor to new framework (#98) 2023-04-04 21:32:04 +08:00