Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nilusche/enterprise-actions-runner
- Owner: Nilusche
- Created: 2023-05-12T12:30:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-12T22:24:28.000Z (almost 2 years ago)
- Last Synced: 2024-11-11T12:43:49.565Z (3 months ago)
- Topics: actions, docker, docker-compose, github
- Language: Dockerfile
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# enterprise-actions-runner
Dockerfiles and bash to setup an organizational runner to execute Python scriptsThis 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
```