add main server
This commit is contained in:
parent
2f3f0b7820
commit
50124a7efa
18 changed files with 405 additions and 0 deletions
17
main-docker/n8n/compose.yaml
Normal file
17
main-docker/n8n/compose.yaml
Normal file
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
n8n:
|
||||
container_name: n8n
|
||||
image: n8nio/n8n:latest
|
||||
ports:
|
||||
- "5678:5678"
|
||||
volumes:
|
||||
- n8n_data:/home/node/.n8n
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
group_add:
|
||||
- "996"
|
||||
environment:
|
||||
- N8N_SECURE_COOKIE=false
|
||||
- TZ=America/Chicago
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
n8n_data:
|
Loading…
Add table
Add a link
Reference in a new issue