mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
add n8n
This commit is contained in:
8
n8n/README.md
Normal file
8
n8n/README.md
Normal file
@@ -0,0 +1,8 @@
|
||||
n8n
|
||||
===
|
||||
|
||||
[n8n][1] (pronounced n-eight-n) helps you to interconnect every app with an API in
|
||||
the world with each other to share and manipulate its data without a single
|
||||
line of code.
|
||||
|
||||
[1]: https://n8n.io/
|
||||
9
n8n/arm/docker-compose.yml
Normal file
9
n8n/arm/docker-compose.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
n8n:
|
||||
image: n8nio/n8n:latest-rpi
|
||||
ports:
|
||||
- "5678:5678"
|
||||
volumes:
|
||||
- ./data:/root/.n8n
|
||||
restart: unless-stopped
|
||||
9
n8n/docker-compose.yml
Normal file
9
n8n/docker-compose.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
n8n:
|
||||
image: n8nio/n8n
|
||||
ports:
|
||||
- "5678:5678"
|
||||
volumes:
|
||||
- ./data:/root/.n8n
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user