chore(deps): update gitea/act_runner docker tag to v0.3.0 (#4125)
This commit is contained in:
52
apps/gitea-runner/0.3.0/data.yml
Normal file
52
apps/gitea-runner/0.3.0/data.yml
Normal file
@@ -0,0 +1,52 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "./data"
|
||||
edit: true
|
||||
envKey: GITEA_RUNNER_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
label:
|
||||
en: Data persistence path
|
||||
zh: 数据持久化路径
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: GITEA_INSTANCE_URL
|
||||
labelZh: Gitea 实例 URL
|
||||
labelEn: Gitea instance URL
|
||||
label:
|
||||
en: Gitea instance URL
|
||||
zh: Gitea 实例 URL
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: GITEA_RUNNER_REGISTRATION_TOKEN
|
||||
labelZh: 注册令牌
|
||||
labelEn: Registration token
|
||||
label:
|
||||
en: Registration token
|
||||
zh: 注册令牌
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: GITEA_RUNNER_NAME
|
||||
labelZh: Runner 名称
|
||||
labelEn: Runner name
|
||||
label:
|
||||
en: Runner name
|
||||
zh: Runner 名称
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: GITEA_RUNNER_LABELS
|
||||
labelZh: Runner 标签
|
||||
labelEn: Runner labels
|
||||
label:
|
||||
en: Runner labels
|
||||
zh: Runner 标签
|
||||
required: true
|
||||
type: text
|
||||
25
apps/gitea-runner/0.3.0/docker-compose.yml
Normal file
25
apps/gitea-runner/0.3.0/docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
gitea:
|
||||
image: gitea/act_runner:0.3.0
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
privileged: true
|
||||
volumes:
|
||||
- ${GITEA_RUNNER_ROOT_PATH}/config.yaml:/config.yaml
|
||||
- ${GITEA_RUNNER_ROOT_PATH}/data:/data
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
environment:
|
||||
GITEA_INSTANCE_URL: "${GITEA_INSTANCE_URL}"
|
||||
GITEA_RUNNER_REGISTRATION_TOKEN: "${GITEA_RUNNER_REGISTRATION_TOKEN}"
|
||||
GITEA_RUNNER_NAME: "${GITEA_RUNNER_NAME}"
|
||||
GITEA_RUNNER_LABELS: "${GITEA_RUNNER_LABELS}"
|
||||
Reference in New Issue
Block a user