8 lines
122 B
Bash
8 lines
122 B
Bash
#!/bin/bash
|
|
|
|
# 停止n8n指南服务
|
|
echo "🛑 停止n8n指南服务..."
|
|
|
|
docker-compose down
|
|
|
|
echo "✅ 服务已停止" |