n8n 工作流模板集合,提供 4,343+ 个生产就绪的自动化工作流和在线浏览界面
docker run -d --name n8n-workflows -p 8000:8000 aliuq/n8n-workflows:latest
访问 http://localhost:8000 即可使用
创建 docker-compose.yml 文件:
name: n8n-workflows
services:
n8n-workflows:
image: aliuq/n8n-workflows:latest
container_name: n8n-workflows
restart: unless-stopped
ports:
- '8000:8000'
运行服务:
docker-compose up -d
# 克隆仓库
git clone https://github.com/aliuq/apps-image.git
cd apps-image/apps/n8n-workflows
# 构建镜像
docker buildx build -f ./Dockerfile -t n8n-workflows:local --load .
# 以开发模式运行(显示构建日志)
docker buildx build --progress=plain -f ./Dockerfile -t n8n-workflows:local --load .
# 运行容器并进入交互模式
docker run -it --rm -p 8000:8000 n8n-workflows:local
📝 该文档由 AI 辅助生成并整理,如有问题请随时反馈
Content type
Image
Digest
sha256:a8c331660…
Size
123.2 MB
Last updated
3 months ago
docker pull aliuq/n8n-workflows