-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (35 loc) · 940 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (35 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# services:
# n8n:
# image: docker.n8n.io/n8nio/n8n
# container_name: n8n-shopify-dev
# restart: unless-stopped
# ports:
# - "5678:5678"
# environment:
# - N8N_CUSTOM_EXTENSIONS=/data/custom
# - GENERIC_TIMEZONE=America/New_York
# - TZ=America/New_York
# volumes:
# - n8n_data:/home/node/.n8n
# - ./:/data/custom
# volumes:
# n8n_data:
services:
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: n8n-shopify-dev
restart: unless-stopped
ports:
- "5678:5678"
environment:
- N8N_CUSTOM_EXTENSIONS=/data/custom
- GENERIC_TIMEZONE=America/New_York
- TZ=America/New_York
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
volumes:
- n8n_data:/home/node/.n8n
# Mount both custom node projects
- ../n8n-netsuite-restlet-suiteql:/data/custom/netsuite-node
- ./:/data/custom/shopify-node
volumes:
n8n_data: