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