Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjiawei committed Oct 7, 2023
1 parent 681309d commit 9caf4f7
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 21 deletions.
6 changes: 4 additions & 2 deletions runnergo/config.env
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ MAX_RUNNER_CONCURRENCY=1000

###### 请注意,以上配置项不能修改!!!


## 以下配置项为RunnerGO项目内部的配置,可以根据自己的情况,酌情修改

# 上传文件端口号(非必要不要改,这是容器里的)
Expand Down Expand Up @@ -48,7 +47,7 @@ RG_KAFKA_NUM=2
RG_MANAGEMENT_NOTIFY_STOP_STRESS=http://manage:30000/management/api/v1/plan/notify_stop_stress
RG_MANAGEMENT_NOTIFY_RUN_FINISH=http://manage:30000/management/api/v1/auto_plan/notify_run_finish

# 项目域名 (示例:服务器ip:9999 或 项目域名)
# 项目域名 (示例:服务器ip:9999 或项目域名 例如:http://xxx.xxx.xxx.xxx:9999/ 注意添加"/")
RG_DOMAIN=

# Mysql 相关配置
Expand Down Expand Up @@ -135,3 +134,6 @@ RG_MOCK_LOG_LEVEL=debug
RG_MOCK_PLUGIN_REDIS_ENABLE=true
RG_MOCK_PLUGIN_REDIS_PREFIX=/mock/
RG_MOCK_PLUGIN_REDIS_DB=14

# 静态文件目录
RG_STATIC=./data/static/
55 changes: 36 additions & 19 deletions runnergo/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ services:
restart: always
networks:
- apipost_net
ports:
- "3307:3306"
redis-db:
image: registry.cn-beijing.aliyuncs.com/runnergo/redis:6.2.7
volumes:
Expand All @@ -18,6 +20,8 @@ services:
restart: always
networks:
- apipost_net
ports:
- "6380:6379"
mongo-db:
image: registry.cn-beijing.aliyuncs.com/runnergo/mongo:4.4
env_file:
Expand All @@ -28,19 +32,23 @@ services:
restart: always
networks:
- apipost_net
ports:
- "27018:27017"
manage:
image: registry.cn-beijing.aliyuncs.com/runnergo/manage:releases-v2.0.1
image: registry.cn-beijing.aliyuncs.com/runnergo/manage:releases-v3.0.0
restart: always
env_file:
- ./config.env
volumes:
- ./static:/data/static
networks:
- apipost_net
ports:
- "58889:30000"
depends_on:
- mysql-db
manage-ws:
image: registry.cn-beijing.aliyuncs.com/runnergo/manage-ws:releases-v2.0.1
image: registry.cn-beijing.aliyuncs.com/runnergo/manage-ws:releases-v3.0.0
restart: always
env_file:
- ./config.env
Expand All @@ -51,7 +59,7 @@ services:
depends_on:
- mysql-db
web-ui:
image: registry.cn-beijing.aliyuncs.com/runnergo/web-ui:releases-v2.0.1
image: registry.cn-beijing.aliyuncs.com/runnergo/web-ui:releases-v3.0.0
restart: always
ports:
- "9999:81"
Expand All @@ -65,6 +73,15 @@ services:
- ./config.env
networks:
- apipost_net
engine-ui:
image: registry.cn-beijing.aliyuncs.com/runnergo/engine-ui-ee:releases-v1.0.0-beta
restart: always
env_file:
- ./config.env
networks:
- apipost_net
depends_on:
- redis-db
file-server:
image: registry.cn-beijing.aliyuncs.com/runnergo/file-server:releases-v1.0.1
restart: always
Expand All @@ -75,28 +92,28 @@ services:
networks:
- apipost_net
zookeeper:
image: registry.cn-beijing.aliyuncs.com/runnergo/zookeeper:latest
restart: always
networks:
- apipost_net
image: registry.cn-beijing.aliyuncs.com/runnergo/zookeeper:latest
restart: always
networks:
- apipost_net
kafka:
image: registry.cn-beijing.aliyuncs.com/runnergo/kafka:2.13-3.2.1
image: registry.cn-beijing.aliyuncs.com/runnergo/kafka:2.13-3.2.1
restart: always
depends_on:
- zookeeper
- zookeeper
env_file:
- ./config.env
- ./config.env
networks:
- apipost_net
collector:
image: registry.cn-beijing.aliyuncs.com/runnergo/collector:releases-v2.0.1
restart: always
env_file:
- ./config.env
networks:
- apipost_net
depends_on:
- kafka
image: registry.cn-beijing.aliyuncs.com/runnergo/collector:releases-v2.0.1
restart: always
env_file:
- ./config.env
networks:
- apipost_net
depends_on:
- kafka
admin-fe:
image: registry.cn-beijing.aliyuncs.com/runnergo/admin-fe:releases-v2.0.0
restart: always
Expand Down Expand Up @@ -128,4 +145,4 @@ services:
- "58903:30003"
networks:
apipost_net:
driver: bridge
driver: bridge

0 comments on commit 9caf4f7

Please sign in to comment.