Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nilusche/enterprise-actions-runner

Dockerfiles and bash to setup an organizational runner to execute Python scripts
https://github.com/nilusche/enterprise-actions-runner

actions docker docker-compose github

Last synced: about 1 month ago
JSON representation

Dockerfiles and bash to setup an organizational runner to execute Python scripts

Awesome Lists containing this project

README

        

# enterprise-actions-runner
Dockerfiles and bash to setup an organizational runner to execute Python scripts

This Dockerfile enables users to setup self-hosted organization runners in a containerized way.

# Installation steps
## Build and run image
```
$ docker build actions-runner-image .

$ docker run \
--detach \
--env ORGANIZATION= \
--env ACCESS_TOKEN= \
--name runner \
actions-runner-image
```

## Start docker compose
```
$ docker compose build

$ docker compose up --scale runner=2 -d
```