docs: 移除 README 中已废弃的 redis 服务引用#28
Open
F1sh2712 wants to merge 1 commit intoInvolutionHell:mainfrom
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
移除 README 中对已废弃
redis服务的引用,共 4 处。Why
docker-compose.yml中已不存在redis服务,但 README 仍指示用户执行docker compose up -d postgres redis,导致新贡献者运行时报no such service: redis。Closes #25
How
修改 README.md 共 4 处:
Redis 7,docker-compose.yml # 中间件编排 (Postgres, Redis, Caddy, Backend)→docker-compose.yml # 中间件编排 (Postgres, Caddy, Backend)启动 PostgreSQL 18 与 Redis 7→启动 PostgreSQL 18docker compose up -d postgres redis→docker compose up -d postgresTesting
文档改动,无需代码测试。本地已验证修改后命令可正常执行。