Files
Arch1Panel/apps/n8n-zh/2.17.0/docker-compose.yml

22 lines
496 B
YAML
Raw Normal View History

2025-09-02 15:55:20 +08:00
services:
n8n:
2026-04-14 05:32:08 +08:00
image: n8nio/n8n:2.17.0
2025-09-02 15:55:20 +08:00
container_name: ${CONTAINER_NAME}
restart: always
2025-09-09 17:21:44 +08:00
user: 1000:1000
2025-09-02 15:55:20 +08:00
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:5678
volumes:
- ./data:/home/node/.n8n
- ./editor-ui:/usr/local/lib/node_modules/n8n/node_modules/n8n-editor-ui/dist
environment:
N8N_SECURE_COOKIE: false
N8N_DEFAULT_LOCALE: zh-CN
labels:
2025-09-09 17:21:44 +08:00
createdBy: Apps
2025-09-02 15:55:20 +08:00
networks:
1panel-network:
2025-09-09 17:21:44 +08:00
external: true