Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copy to .env and fill in. Never commit .env.
# Variables interpolated by docker-compose.yml for the 3-runner X64 layout.

# GitHub App that registers the runners (required)
APP_ID=
APP_PRIVATE_KEY=
# Org login the runners register against (also used as ORG_NAME)
APP_LOGIN=

# Optional — values match the compose defaults
RUNNER_NAME_PREFIX=runner
LABELS=self-hosted,Linux,X64,beelink,docker,large
RUNNER_GROUP=Default
DISABLE_AUTO_UPDATE=false

# EPHEMERAL is hard-coded to "false" in docker-compose.yml so the three
# runners stay persistent and keep their per-runner cache volumes.
# Setting it here has no effect.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ ENV PATH="${PATH}:/usr/local/lib/android/sdk/platform-tools/"
# ANDROID_HOME is deprecated, but older versions of Gradle rely on it
ENV ANDROID_SDK_ROOT=$ANDROID_ROOT/sdk
ENV ANDROID_HOME=$ANDROID_ROOT/sdk
LABEL maintainer="ernstjason1@gmail.com"
LABEL maintainer="asen.lekov@dodi.li"

# Job hooks: JOB_STARTED is the poison sweep (covers OOM / killed runner);
# JOB_COMPLETED is the tidy-up. Neither wipes package / Gradle caches.
Expand Down