diff --git a/appstore/apifox-runner-team/README.md b/appstore/apifox-runner-team/README.md new file mode 100644 index 000000000..6bd73aa45 --- /dev/null +++ b/appstore/apifox-runner-team/README.md @@ -0,0 +1,64 @@ +# Apifox Runner + +自动化测试定时任务、接口导入、Mock 服务 + +![Apifox Runner](https://file.lifebus.top/imgs/apifox_runner_cover.png) + +![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue) + +## 简介 + +API 设计、开发、测试一体化协作平台 + +Apifox = Postman + Swagger + Mock + JMeter + +一套系统、一份数据,解决多个 API 工具之间的数据同步问题 +只要定义好 API 文档,API 调试、API Mock、API 自动化测试即可直接使用,无需再次定义。 + +API 文档和 API 开发调试使用同一个工具,API 调试完成后即可保证和 API 文档定义完全一致。高效、及时、准确! + +## 特性 + +- [x] 可视化 API 设计 +- [x] 比 Postman 更强大 +- [x] 零门槛实现自动化测试 +- [x] 分享&发布 API 文档 +- [x] 零配置 Mock 数据 +- [x] CI/CD 持续集成 +- [x] 数据库操作 +- [x] 团队协作 +- [x] 支持 HTTP、TCP、RPC +- [x] 数据导入/导出 +- [x] 自动生成代码 + +## 安装说明 + +### 版本说明 + +- `latest`:通用版 + 包含 Runner 所有功能,及以下外部程序语言环境:Nodejs 18,Java 21,Python 3,PHP 8 + +- `slim`:精简版 + 在精简版中,包含 Runner 所有功能,及以下外部程序语言环境:Nodejs 18 + +### 应用服务地址 + +默认值:`https://api.apifox.cn` + +部署时推荐填写公网地址,以保证应用在团队中正常运行。 + +### 访问令牌 (Access Token) + +请在ApiFox客户端,前往主窗口 `团队资源` >> `通用 Runner` 获取访问令牌 + +### 团队 ID (Team ID) + +请在ApiFox客户端,前往主窗口 `团队设置` 获取团队 ID + +### Runner ID + +请在ApiFox客户端,前往主窗口 `团队资源` >> `通用 Runner` 获取 Runner ID + +--- + +![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png) diff --git a/appstore/apifox-runner-team/data.yml b/appstore/apifox-runner-team/data.yml new file mode 100644 index 000000000..47ba71808 --- /dev/null +++ b/appstore/apifox-runner-team/data.yml @@ -0,0 +1,14 @@ +additionalProperties: + key: apifox-runner-team + name: Apifox Runner (团队版) + tags: + - Runtime + - Local + shortDescZh: 自动化测试定时任务、接口导入、Mock 服务 + shortDescEn: Automated testing, scheduled tasks, interface import, Mock service + type: runtime + crossVersionUpdate: true + limit: 0 + website: https://apifox.com/ + github: https://apifox.com/ + document: https://apifox.com/help/ diff --git a/appstore/apifox-runner-team/latest/.env b/appstore/apifox-runner-team/latest/.env new file mode 100644 index 000000000..078754206 --- /dev/null +++ b/appstore/apifox-runner-team/latest/.env @@ -0,0 +1,18 @@ +# 数据持久化路径 [必填] +APIFOX_RUNNER_ROOT_PATH=/home/apifox-runner + +# WebUI 端口 [必填] +PANEL_APP_PORT_HTTP=4524 + +# 应用服务地址 [必填] +SERVER_APP_BASE_URL=https://api.apifox.cn + +# 访问令牌 [必填] +ACCESS_TOKEN= + +# 团队 ID [必填] +TEAM_ID=0 + +# Runner ID [必填] +RUNNER_ID=0 + diff --git a/appstore/apifox-runner-team/latest/data.yml b/appstore/apifox-runner-team/latest/data.yml new file mode 100644 index 000000000..82139f8c7 --- /dev/null +++ b/appstore/apifox-runner-team/latest/data.yml @@ -0,0 +1,45 @@ +additionalProperties: + formFields: + - default: "/home/apifox-runner" + edit: true + envKey: APIFOX_RUNNER_ROOT_PATH + labelZh: 数据持久化路径 + labelEn: Data persistence path + required: true + type: text + - default: 4524 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelZh: WebUI 端口 + labelEn: WebUI port + required: true + rule: paramPort + type: number + - default: "https://api.apifox.cn" + edit: true + envKey: SERVER_APP_BASE_URL + labelZh: 应用服务地址 + labelEn: App Server address + required: true + type: text + - default: "" + edit: true + envKey: ACCESS_TOKEN + labelZh: 访问令牌 + labelEn: Access Token + required: true + type: text + - default: 0 + edit: true + envKey: TEAM_ID + labelZh: 团队 ID + labelEn: Team ID + required: true + type: number + - default: 0 + edit: true + envKey: RUNNER_ID + labelZh: Runner ID + labelEn: Runner ID + required: true + type: number diff --git a/appstore/apifox-runner-team/latest/docker-compose.yml b/appstore/apifox-runner-team/latest/docker-compose.yml new file mode 100644 index 000000000..9bd62c5de --- /dev/null +++ b/appstore/apifox-runner-team/latest/docker-compose.yml @@ -0,0 +1,21 @@ +networks: + 1panel-network: + external: true +services: + apifox-runner: + container_name: apifox-runner-team + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + image: registry.cn-hangzhou.aliyuncs.com/apifox/self-hosted-general-runner + labels: + createdBy: Apps + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:4524 + restart: always + volumes: + - ${APIFOX_RUNNER_ROOT_PATH}/runner:/opt/runner diff --git a/appstore/pi-hole-dhcp/2025.10.1/envs/default.env b/appstore/apifox-runner-team/latest/envs/default.env similarity index 100% rename from appstore/pi-hole-dhcp/2025.10.1/envs/default.env rename to appstore/apifox-runner-team/latest/envs/default.env diff --git a/appstore/pi-hole-dhcp/2025.10.1/envs/global.env b/appstore/apifox-runner-team/latest/envs/global.env similarity index 100% rename from appstore/pi-hole-dhcp/2025.10.1/envs/global.env rename to appstore/apifox-runner-team/latest/envs/global.env diff --git a/appstore/pi-hole-dhcp/2025.10.1/scripts/init.sh b/appstore/apifox-runner-team/latest/scripts/init.sh similarity index 100% rename from appstore/pi-hole-dhcp/2025.10.1/scripts/init.sh rename to appstore/apifox-runner-team/latest/scripts/init.sh diff --git a/appstore/pi-hole-dhcp/2025.10.1/scripts/uninstall.sh b/appstore/apifox-runner-team/latest/scripts/uninstall.sh similarity index 100% rename from appstore/pi-hole-dhcp/2025.10.1/scripts/uninstall.sh rename to appstore/apifox-runner-team/latest/scripts/uninstall.sh diff --git a/appstore/pi-hole-dhcp/2025.10.1/scripts/upgrade.sh b/appstore/apifox-runner-team/latest/scripts/upgrade.sh similarity index 100% rename from appstore/pi-hole-dhcp/2025.10.1/scripts/upgrade.sh rename to appstore/apifox-runner-team/latest/scripts/upgrade.sh diff --git a/appstore/apifox-runner-team/logo.png b/appstore/apifox-runner-team/logo.png new file mode 100644 index 000000000..2aa3008c2 Binary files /dev/null and b/appstore/apifox-runner-team/logo.png differ diff --git a/appstore/apifox-runner-team/slim/.env b/appstore/apifox-runner-team/slim/.env new file mode 100644 index 000000000..078754206 --- /dev/null +++ b/appstore/apifox-runner-team/slim/.env @@ -0,0 +1,18 @@ +# 数据持久化路径 [必填] +APIFOX_RUNNER_ROOT_PATH=/home/apifox-runner + +# WebUI 端口 [必填] +PANEL_APP_PORT_HTTP=4524 + +# 应用服务地址 [必填] +SERVER_APP_BASE_URL=https://api.apifox.cn + +# 访问令牌 [必填] +ACCESS_TOKEN= + +# 团队 ID [必填] +TEAM_ID=0 + +# Runner ID [必填] +RUNNER_ID=0 + diff --git a/appstore/apifox-runner-team/slim/data.yml b/appstore/apifox-runner-team/slim/data.yml new file mode 100644 index 000000000..82139f8c7 --- /dev/null +++ b/appstore/apifox-runner-team/slim/data.yml @@ -0,0 +1,45 @@ +additionalProperties: + formFields: + - default: "/home/apifox-runner" + edit: true + envKey: APIFOX_RUNNER_ROOT_PATH + labelZh: 数据持久化路径 + labelEn: Data persistence path + required: true + type: text + - default: 4524 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelZh: WebUI 端口 + labelEn: WebUI port + required: true + rule: paramPort + type: number + - default: "https://api.apifox.cn" + edit: true + envKey: SERVER_APP_BASE_URL + labelZh: 应用服务地址 + labelEn: App Server address + required: true + type: text + - default: "" + edit: true + envKey: ACCESS_TOKEN + labelZh: 访问令牌 + labelEn: Access Token + required: true + type: text + - default: 0 + edit: true + envKey: TEAM_ID + labelZh: 团队 ID + labelEn: Team ID + required: true + type: number + - default: 0 + edit: true + envKey: RUNNER_ID + labelZh: Runner ID + labelEn: Runner ID + required: true + type: number diff --git a/appstore/apifox-runner-team/slim/docker-compose.yml b/appstore/apifox-runner-team/slim/docker-compose.yml new file mode 100644 index 000000000..dcf59fd91 --- /dev/null +++ b/appstore/apifox-runner-team/slim/docker-compose.yml @@ -0,0 +1,21 @@ +networks: + 1panel-network: + external: true +services: + apifox-runner: + container_name: apifox-runner-team + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + image: registry.cn-hangzhou.aliyuncs.com/apifox/self-hosted-general-runner:slim + labels: + createdBy: Apps + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:4524 + restart: always + volumes: + - ${APIFOX_RUNNER_ROOT_PATH}/runner:/opt/runner diff --git a/appstore/pi-hole/2025.10.1/envs/default.env b/appstore/apifox-runner-team/slim/envs/default.env similarity index 100% rename from appstore/pi-hole/2025.10.1/envs/default.env rename to appstore/apifox-runner-team/slim/envs/default.env diff --git a/appstore/pi-hole/2025.10.1/envs/global.env b/appstore/apifox-runner-team/slim/envs/global.env similarity index 100% rename from appstore/pi-hole/2025.10.1/envs/global.env rename to appstore/apifox-runner-team/slim/envs/global.env diff --git a/appstore/pi-hole/2025.10.1/scripts/init.sh b/appstore/apifox-runner-team/slim/scripts/init.sh similarity index 100% rename from appstore/pi-hole/2025.10.1/scripts/init.sh rename to appstore/apifox-runner-team/slim/scripts/init.sh diff --git a/appstore/pi-hole/2025.10.1/scripts/uninstall.sh b/appstore/apifox-runner-team/slim/scripts/uninstall.sh similarity index 100% rename from appstore/pi-hole/2025.10.1/scripts/uninstall.sh rename to appstore/apifox-runner-team/slim/scripts/uninstall.sh diff --git a/appstore/pi-hole/2025.10.1/scripts/upgrade.sh b/appstore/apifox-runner-team/slim/scripts/upgrade.sh similarity index 100% rename from appstore/pi-hole/2025.10.1/scripts/upgrade.sh rename to appstore/apifox-runner-team/slim/scripts/upgrade.sh diff --git a/appstore/apifox-runner/README.md b/appstore/apifox-runner/README.md index 6bd73aa45..605774a52 100644 --- a/appstore/apifox-runner/README.md +++ b/appstore/apifox-runner/README.md @@ -1,4 +1,4 @@ -# Apifox Runner +# Apifox Runner (组织版) 自动化测试定时任务、接口导入、Mock 服务 diff --git a/appstore/apifox-runner/data.yml b/appstore/apifox-runner/data.yml index e969b6001..72909fa0a 100644 --- a/appstore/apifox-runner/data.yml +++ b/appstore/apifox-runner/data.yml @@ -1,6 +1,6 @@ additionalProperties: key: apifox-runner - name: Apifox Runner + name: Apifox Runner (组织版) tags: - Runtime - Local diff --git a/appstore/apifox-runner/latest/.env b/appstore/apifox-runner/latest/.env index 078754206..1c35f6ca7 100644 --- a/appstore/apifox-runner/latest/.env +++ b/appstore/apifox-runner/latest/.env @@ -10,8 +10,8 @@ SERVER_APP_BASE_URL=https://api.apifox.cn # 访问令牌 [必填] ACCESS_TOKEN= -# 团队 ID [必填] -TEAM_ID=0 +# 组织 ID [必填] +ORGANIZATION_ID=0 # Runner ID [必填] RUNNER_ID=0 diff --git a/appstore/apifox-runner/latest/data.yml b/appstore/apifox-runner/latest/data.yml index 82139f8c7..beda67ac7 100644 --- a/appstore/apifox-runner/latest/data.yml +++ b/appstore/apifox-runner/latest/data.yml @@ -31,9 +31,9 @@ additionalProperties: type: text - default: 0 edit: true - envKey: TEAM_ID - labelZh: 团队 ID - labelEn: Team ID + envKey: ORGANIZATION_ID + labelZh: 组织 ID + labelEn: Organization ID required: true type: number - default: 0 diff --git a/appstore/apifox-runner/slim/.env b/appstore/apifox-runner/slim/.env index 078754206..1c35f6ca7 100644 --- a/appstore/apifox-runner/slim/.env +++ b/appstore/apifox-runner/slim/.env @@ -10,8 +10,8 @@ SERVER_APP_BASE_URL=https://api.apifox.cn # 访问令牌 [必填] ACCESS_TOKEN= -# 团队 ID [必填] -TEAM_ID=0 +# 组织 ID [必填] +ORGANIZATION_ID=0 # Runner ID [必填] RUNNER_ID=0 diff --git a/appstore/apifox-runner/slim/data.yml b/appstore/apifox-runner/slim/data.yml index 82139f8c7..beda67ac7 100644 --- a/appstore/apifox-runner/slim/data.yml +++ b/appstore/apifox-runner/slim/data.yml @@ -31,9 +31,9 @@ additionalProperties: type: text - default: 0 edit: true - envKey: TEAM_ID - labelZh: 团队 ID - labelEn: Team ID + envKey: ORGANIZATION_ID + labelZh: 组织 ID + labelEn: Organization ID required: true type: number - default: 0 diff --git a/appstore/pi-hole-dhcp/2025.10.1/.env b/appstore/pi-hole-dhcp/2025.10.2/.env similarity index 100% rename from appstore/pi-hole-dhcp/2025.10.1/.env rename to appstore/pi-hole-dhcp/2025.10.2/.env diff --git a/appstore/pi-hole-dhcp/2025.10.1/data.yml b/appstore/pi-hole-dhcp/2025.10.2/data.yml similarity index 100% rename from appstore/pi-hole-dhcp/2025.10.1/data.yml rename to appstore/pi-hole-dhcp/2025.10.2/data.yml diff --git a/appstore/pi-hole-dhcp/2025.10.1/docker-compose.yml b/appstore/pi-hole-dhcp/2025.10.2/docker-compose.yml similarity index 93% rename from appstore/pi-hole-dhcp/2025.10.1/docker-compose.yml rename to appstore/pi-hole-dhcp/2025.10.2/docker-compose.yml index eccab0a3a..3a75315eb 100644 --- a/appstore/pi-hole-dhcp/2025.10.1/docker-compose.yml +++ b/appstore/pi-hole-dhcp/2025.10.2/docker-compose.yml @@ -18,7 +18,7 @@ services: - 53 - 53/udp - ${PANEL_APP_PORT_HTTP} - image: pihole/pihole:2025.10.1 + image: pihole/pihole:2025.10.2 labels: createdBy: Apps network_mode: host diff --git a/appstore/pi-hole-dhcp/2025.10.2/envs/default.env b/appstore/pi-hole-dhcp/2025.10.2/envs/default.env new file mode 100644 index 000000000..cd05f46e6 --- /dev/null +++ b/appstore/pi-hole-dhcp/2025.10.2/envs/default.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +ENV_FILE=.env diff --git a/appstore/pi-hole-dhcp/2025.10.2/envs/global.env b/appstore/pi-hole-dhcp/2025.10.2/envs/global.env new file mode 100644 index 000000000..e10989fe4 --- /dev/null +++ b/appstore/pi-hole-dhcp/2025.10.2/envs/global.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +TZ=Asia/Shanghai diff --git a/appstore/pi-hole-dhcp/2025.10.2/scripts/init.sh b/appstore/pi-hole-dhcp/2025.10.2/scripts/init.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/appstore/pi-hole-dhcp/2025.10.2/scripts/init.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/appstore/pi-hole-dhcp/2025.10.2/scripts/uninstall.sh b/appstore/pi-hole-dhcp/2025.10.2/scripts/uninstall.sh new file mode 100644 index 000000000..c86c4fbca --- /dev/null +++ b/appstore/pi-hole-dhcp/2025.10.2/scripts/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/appstore/pi-hole-dhcp/2025.10.2/scripts/upgrade.sh b/appstore/pi-hole-dhcp/2025.10.2/scripts/upgrade.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/appstore/pi-hole-dhcp/2025.10.2/scripts/upgrade.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/appstore/pi-hole/2025.10.1/.env b/appstore/pi-hole/2025.10.2/.env similarity index 100% rename from appstore/pi-hole/2025.10.1/.env rename to appstore/pi-hole/2025.10.2/.env diff --git a/appstore/pi-hole/2025.10.1/data.yml b/appstore/pi-hole/2025.10.2/data.yml similarity index 100% rename from appstore/pi-hole/2025.10.1/data.yml rename to appstore/pi-hole/2025.10.2/data.yml diff --git a/appstore/pi-hole/2025.10.1/docker-compose.yml b/appstore/pi-hole/2025.10.2/docker-compose.yml similarity index 93% rename from appstore/pi-hole/2025.10.1/docker-compose.yml rename to appstore/pi-hole/2025.10.2/docker-compose.yml index 0246fec43..1a8483540 100644 --- a/appstore/pi-hole/2025.10.1/docker-compose.yml +++ b/appstore/pi-hole/2025.10.2/docker-compose.yml @@ -9,7 +9,7 @@ services: - .env environment: - TZ=Asia/Shanghai - image: pihole/pihole:2025.10.1 + image: pihole/pihole:2025.10.2 labels: createdBy: Apps networks: diff --git a/appstore/pi-hole/2025.10.2/envs/default.env b/appstore/pi-hole/2025.10.2/envs/default.env new file mode 100644 index 000000000..cd05f46e6 --- /dev/null +++ b/appstore/pi-hole/2025.10.2/envs/default.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +ENV_FILE=.env diff --git a/appstore/pi-hole/2025.10.2/envs/global.env b/appstore/pi-hole/2025.10.2/envs/global.env new file mode 100644 index 000000000..e10989fe4 --- /dev/null +++ b/appstore/pi-hole/2025.10.2/envs/global.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +TZ=Asia/Shanghai diff --git a/appstore/pi-hole/2025.10.2/scripts/init.sh b/appstore/pi-hole/2025.10.2/scripts/init.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/appstore/pi-hole/2025.10.2/scripts/init.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/appstore/pi-hole/2025.10.2/scripts/uninstall.sh b/appstore/pi-hole/2025.10.2/scripts/uninstall.sh new file mode 100644 index 000000000..c86c4fbca --- /dev/null +++ b/appstore/pi-hole/2025.10.2/scripts/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/appstore/pi-hole/2025.10.2/scripts/upgrade.sh b/appstore/pi-hole/2025.10.2/scripts/upgrade.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/appstore/pi-hole/2025.10.2/scripts/upgrade.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/dockge/apifox-runner-team/.env b/dockge/apifox-runner-team/.env new file mode 100644 index 000000000..078754206 --- /dev/null +++ b/dockge/apifox-runner-team/.env @@ -0,0 +1,18 @@ +# 数据持久化路径 [必填] +APIFOX_RUNNER_ROOT_PATH=/home/apifox-runner + +# WebUI 端口 [必填] +PANEL_APP_PORT_HTTP=4524 + +# 应用服务地址 [必填] +SERVER_APP_BASE_URL=https://api.apifox.cn + +# 访问令牌 [必填] +ACCESS_TOKEN= + +# 团队 ID [必填] +TEAM_ID=0 + +# Runner ID [必填] +RUNNER_ID=0 + diff --git a/dockge/apifox-runner-team/docker-compose.yml b/dockge/apifox-runner-team/docker-compose.yml new file mode 100644 index 000000000..9bd62c5de --- /dev/null +++ b/dockge/apifox-runner-team/docker-compose.yml @@ -0,0 +1,21 @@ +networks: + 1panel-network: + external: true +services: + apifox-runner: + container_name: apifox-runner-team + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + image: registry.cn-hangzhou.aliyuncs.com/apifox/self-hosted-general-runner + labels: + createdBy: Apps + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:4524 + restart: always + volumes: + - ${APIFOX_RUNNER_ROOT_PATH}/runner:/opt/runner diff --git a/dockge/apifox-runner-team/envs/default.env b/dockge/apifox-runner-team/envs/default.env new file mode 100644 index 000000000..cd05f46e6 --- /dev/null +++ b/dockge/apifox-runner-team/envs/default.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +ENV_FILE=.env diff --git a/dockge/apifox-runner-team/envs/global.env b/dockge/apifox-runner-team/envs/global.env new file mode 100644 index 000000000..e10989fe4 --- /dev/null +++ b/dockge/apifox-runner-team/envs/global.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +TZ=Asia/Shanghai diff --git a/dockge/apifox-runner-team_slim/.env b/dockge/apifox-runner-team_slim/.env new file mode 100644 index 000000000..078754206 --- /dev/null +++ b/dockge/apifox-runner-team_slim/.env @@ -0,0 +1,18 @@ +# 数据持久化路径 [必填] +APIFOX_RUNNER_ROOT_PATH=/home/apifox-runner + +# WebUI 端口 [必填] +PANEL_APP_PORT_HTTP=4524 + +# 应用服务地址 [必填] +SERVER_APP_BASE_URL=https://api.apifox.cn + +# 访问令牌 [必填] +ACCESS_TOKEN= + +# 团队 ID [必填] +TEAM_ID=0 + +# Runner ID [必填] +RUNNER_ID=0 + diff --git a/dockge/apifox-runner-team_slim/docker-compose.yml b/dockge/apifox-runner-team_slim/docker-compose.yml new file mode 100644 index 000000000..dcf59fd91 --- /dev/null +++ b/dockge/apifox-runner-team_slim/docker-compose.yml @@ -0,0 +1,21 @@ +networks: + 1panel-network: + external: true +services: + apifox-runner: + container_name: apifox-runner-team + env_file: + - ./envs/global.env + - .env + environment: + - TZ=Asia/Shanghai + image: registry.cn-hangzhou.aliyuncs.com/apifox/self-hosted-general-runner:slim + labels: + createdBy: Apps + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:4524 + restart: always + volumes: + - ${APIFOX_RUNNER_ROOT_PATH}/runner:/opt/runner diff --git a/dockge/apifox-runner-team_slim/envs/default.env b/dockge/apifox-runner-team_slim/envs/default.env new file mode 100644 index 000000000..cd05f46e6 --- /dev/null +++ b/dockge/apifox-runner-team_slim/envs/default.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +ENV_FILE=.env diff --git a/dockge/apifox-runner-team_slim/envs/global.env b/dockge/apifox-runner-team_slim/envs/global.env new file mode 100644 index 000000000..e10989fe4 --- /dev/null +++ b/dockge/apifox-runner-team_slim/envs/global.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +TZ=Asia/Shanghai diff --git a/dockge/apifox-runner/.env b/dockge/apifox-runner/.env index 078754206..1c35f6ca7 100644 --- a/dockge/apifox-runner/.env +++ b/dockge/apifox-runner/.env @@ -10,8 +10,8 @@ SERVER_APP_BASE_URL=https://api.apifox.cn # 访问令牌 [必填] ACCESS_TOKEN= -# 团队 ID [必填] -TEAM_ID=0 +# 组织 ID [必填] +ORGANIZATION_ID=0 # Runner ID [必填] RUNNER_ID=0 diff --git a/dockge/apifox-runner_slim/.env b/dockge/apifox-runner_slim/.env index 078754206..1c35f6ca7 100644 --- a/dockge/apifox-runner_slim/.env +++ b/dockge/apifox-runner_slim/.env @@ -10,8 +10,8 @@ SERVER_APP_BASE_URL=https://api.apifox.cn # 访问令牌 [必填] ACCESS_TOKEN= -# 团队 ID [必填] -TEAM_ID=0 +# 组织 ID [必填] +ORGANIZATION_ID=0 # Runner ID [必填] RUNNER_ID=0 diff --git a/dockge/pi-hole-dhcp/docker-compose.yml b/dockge/pi-hole-dhcp/docker-compose.yml index eccab0a3a..3a75315eb 100644 --- a/dockge/pi-hole-dhcp/docker-compose.yml +++ b/dockge/pi-hole-dhcp/docker-compose.yml @@ -18,7 +18,7 @@ services: - 53 - 53/udp - ${PANEL_APP_PORT_HTTP} - image: pihole/pihole:2025.10.1 + image: pihole/pihole:2025.10.2 labels: createdBy: Apps network_mode: host diff --git a/dockge/pi-hole/docker-compose.yml b/dockge/pi-hole/docker-compose.yml index 0246fec43..1a8483540 100644 --- a/dockge/pi-hole/docker-compose.yml +++ b/dockge/pi-hole/docker-compose.yml @@ -9,7 +9,7 @@ services: - .env environment: - TZ=Asia/Shanghai - image: pihole/pihole:2025.10.1 + image: pihole/pihole:2025.10.2 labels: createdBy: Apps networks: