11 lines
296 B
Bash
11 lines
296 B
Bash
SERVICE_NAME="gitea_runner"
|
|
USER_SYSTEMD="$HOME/.config/systemd/user"
|
|
INSTALL_DIR="$HOME/.local/share/$SERVICE_NAME"
|
|
ADDITIONAL_LABLES=(
|
|
"linux"
|
|
"arm64"
|
|
"cloud"
|
|
)
|
|
CONTAINER_HOST="unix:////run/user/1000/podman/podman.sock"
|
|
GITEA_URL="https://gitea.example.com"
|
|
GITEA_TOKEN="your_gitea_token" |