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

View File

@ -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

View File

@ -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
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

View File

@ -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:

View File

@ -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