Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

1.优化数据权限依赖 (#8)。
2.动态导入定时任务函数,移除eval (#9)。
3.优化pg版本的docker compose配置文件 (#11)。

## RuoYi-Vue-FastAPI v1.8.0

Expand Down
11 changes: 9 additions & 2 deletions docker-compose.pg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ services:
ports:
- "19099:9099"
depends_on:
- ruoyi-pg
- ruoyi-redis
ruoyi-pg:
condition: service_healthy
ruoyi-redis:
condition: service_healthy
networks:
- ruoyi-network

Expand Down Expand Up @@ -58,6 +60,11 @@ services:
- "16379:6379"
networks:
- ruoyi-network
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 10s
retries: 30

# 网络配置
networks:
Expand Down