10 lines
175 B
Bash
10 lines
175 B
Bash
#!/bin/bash
|
||
|
||
# 重启n8n指南服务
|
||
echo "🔄 重启n8n指南服务..."
|
||
|
||
docker-compose restart
|
||
|
||
echo "✅ 服务已重启"
|
||
echo "📱 访问地址:http://localhost:8000"
|