We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8405471 commit 75c49e8Copy full SHA for 75c49e8
CHANGELOG.md
@@ -14,6 +14,7 @@
14
15
1.优化数据权限依赖 (#55)。
16
2.动态导入定时任务函数,移除eval (#56)。
17
+3.优化pg版本的docker compose配置文件 (#61)。
18
19
## RuoYi-Vue3-FastAPI v1.8.0
20
docker-compose.pg.yml
@@ -25,8 +25,10 @@ services:
25
ports:
26
- "19099:9099"
27
depends_on:
28
- - ruoyi-pg
29
- - ruoyi-redis
+ ruoyi-pg:
+ condition: service_healthy
30
+ ruoyi-redis:
31
32
networks:
33
- ruoyi-network
34
@@ -58,6 +60,11 @@ services:
58
60
- "16379:6379"
59
61
62
63
+ healthcheck:
64
+ test: ["CMD", "redis-cli", "ping"]
65
+ interval: 5s
66
+ timeout: 10s
67
+ retries: 30
68
69
# 网络配置
70
0 commit comments