diff --git a/Apps/gitea-runner/docker-compose.yml b/Apps/gitea-runner/docker-compose.yml new file mode 100644 index 0000000..48eddc7 --- /dev/null +++ b/Apps/gitea-runner/docker-compose.yml @@ -0,0 +1,32 @@ +name: gitea-runner +services: + runner: + container_name: gitea-runner-01 + environment: + - CONFIG_FILE=/config.yaml + - GITEA_INSTANCE_URL=https://GITEA_INSTANCE_URL_GOES_HERE + - GITEA_RUNNER_NAME=runner-01 + - GITEA_RUNNER_REGISTRATION_TOKEN=GITEA_TOKEN + image: docker.io/gitea/act_runner:latest + labels: + icon: https://git.ct.hinrichs.dev/alexander/CasaOS-alexanders-AppStore/raw/branch/main/Apps/gitea-runner/icon.png + restart: unless-stopped + volumes: + - type: bind + source: /DATA/AppData/$AppData/config.yaml + target: /config.yaml + - type: bind + source: /DATA/AppData/$AppData/data + target: /data + - type: bind + source: /var/run/docker.sock + target: /var/run/docker.sock + network_mode: bridge +x-casaos: + author: Alexander Hinrichs + category: Development + icon: https://git.ct.hinrichs.dev/alexander/CasaOS-alexanders-AppStore/raw/branch/main/Apps/gitea-runner/icon.png + index: / + store_app_id: gitea-runner + title: + en_us: Gitea Runner diff --git a/Apps/gitea-runner/icon.png b/Apps/gitea-runner/icon.png new file mode 100644 index 0000000..03524ab Binary files /dev/null and b/Apps/gitea-runner/icon.png differ