mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 18:06:36 +02:00
add n8n
This commit is contained in:
parent
9b3c68e4f5
commit
b306e0b38e
@ -342,6 +342,7 @@ A collection of delicious docker recipes.
|
||||
- [x] neo4j
|
||||
- [x] erichough/nfs-server
|
||||
- [x] luzifer/nginx-sso
|
||||
- [x] n8nio/n8n
|
||||
- [x] odoo
|
||||
- [x] osixia/openldap
|
||||
- [x] kylemanna/openvpn
|
||||
|
@ -92,7 +92,7 @@ proxies:
|
||||
|
||||
# The type of compression to use on messages. Allowed values are:
|
||||
# none, gzip, snappy, and lz4.
|
||||
compression: snappy
|
||||
compression: none
|
||||
|
||||
# The best-effort number of bytes needed to trigger a flush.
|
||||
flush_bytes: 1048576
|
||||
|
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
|
@ -3,7 +3,7 @@ version: "3.8"
|
||||
services:
|
||||
|
||||
nifi:
|
||||
image: apache/nifi:1.11.4
|
||||
image: apache/nifi:1.12.1
|
||||
ports:
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
@ -22,7 +22,7 @@ services:
|
||||
restart: unless-stopped
|
||||
|
||||
registry:
|
||||
image: apache/nifi-registry:0.7.0
|
||||
image: apache/nifi-registry:0.8.0
|
||||
ports:
|
||||
- "18080:18080"
|
||||
volumes:
|
||||
|
@ -1,9 +1,11 @@
|
||||
rehook:
|
||||
image: vimagick/rehook
|
||||
ports:
|
||||
- "9000:9000"
|
||||
- "9001:9001"
|
||||
volumes:
|
||||
- "./data/etc:/opt/rehook/etc"
|
||||
- "./data/log:/opt/rehook/log"
|
||||
restart: unless-stopped
|
||||
version: "3.8"
|
||||
services:
|
||||
rehook:
|
||||
image: vimagick/rehook
|
||||
ports:
|
||||
- "9000:9000"
|
||||
- "9001:9001"
|
||||
volumes:
|
||||
- "./data/etc:/opt/rehook/etc"
|
||||
- "./data/log:/opt/rehook/log"
|
||||
restart: unless-stopped
|
||||
|
Loading…
Reference in New Issue
Block a user