-
Copy environment variables:
cp .env.example .env
-
Fill in
.env:GITHUB_NAME=abyss-works RUNNER_TOKEN=<registration-token>
RUNNER_TOKEN발급:-
Org runner:
gh api --method POST \ /orgs/${GITHUB_NAME}/actions/runners/registration-token \ --jq '.token'
-
Repo runner:
gh api --method POST \ /repos/${GITHUB_NAME}/${GITHUB_REPO}/actions/runners/registration-token \ --jq '.token'
-
-
Start:
docker compose up -d
After the first run, docker compose up -d is all you need.