diff --git a/n8n-docker-compose.yml b/n8n-docker-compose.yml new file mode 100644 index 0000000..9302706 --- /dev/null +++ b/n8n-docker-compose.yml @@ -0,0 +1,12 @@ +services: + n8n: + image: n8nio/n8n:latest + container_name: n8n + environment: + - NODE_ENV=production + - N8N_SECURE_COOKIE=false + ports: + - "5678:5678" + volumes: + - /usr/docker_binds/n8n/.n8n:/home/node/.n8n + restart: unless-stopped \ No newline at end of file