2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-21 13:23:02 +01:00
This commit is contained in:
kev
2020-10-28 17:20:54 +08:00
parent 9b3c68e4f5
commit b306e0b38e
7 changed files with 41 additions and 12 deletions

8
n8n/README.md Normal file
View 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/

View 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
View File

@@ -0,0 +1,9 @@
version: "3.8"
services:
n8n:
image: n8nio/n8n
ports:
- "5678:5678"
volumes:
- ./data:/root/.n8n
restart: unless-stopped