重命名docker-compose配置文件以使用“.yaml”标准扩展名,更新相关脚本引用

This commit is contained in:
2026-01-28 15:53:50 +08:00
parent 62ac723c95
commit b31711d86d
3 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ log() {
}
# 确保在项目根目录
if [ ! -f "docker-compose.yml" ]; then
if [ ! -f "docker-compose.yaml" ]; then
log "错误: 未能在 $PROJECT_DIR 找到 docker-compose.yml请确保脚本位置正确。"
exit 1
fi