diff --git a/README.md b/README.md index 0a4ab23..8a87349 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/kafka-pixy/data/kafka-pixy.yaml b/kafka-pixy/data/kafka-pixy.yaml index 93de92c..3e009e4 100644 --- a/kafka-pixy/data/kafka-pixy.yaml +++ b/kafka-pixy/data/kafka-pixy.yaml @@ -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 diff --git a/n8n/README.md b/n8n/README.md new file mode 100644 index 0000000..ca20360 --- /dev/null +++ b/n8n/README.md @@ -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/ diff --git a/n8n/arm/docker-compose.yml b/n8n/arm/docker-compose.yml new file mode 100644 index 0000000..063f082 --- /dev/null +++ b/n8n/arm/docker-compose.yml @@ -0,0 +1,9 @@ +version: "3.8" +services: + n8n: + image: n8nio/n8n:latest-rpi + ports: + - "5678:5678" + volumes: + - ./data:/root/.n8n + restart: unless-stopped diff --git a/n8n/docker-compose.yml b/n8n/docker-compose.yml new file mode 100644 index 0000000..724eb31 --- /dev/null +++ b/n8n/docker-compose.yml @@ -0,0 +1,9 @@ +version: "3.8" +services: + n8n: + image: n8nio/n8n + ports: + - "5678:5678" + volumes: + - ./data:/root/.n8n + restart: unless-stopped diff --git a/nifi/docker-compose.yml b/nifi/docker-compose.yml index 6f60f17..b2c2a5e 100644 --- a/nifi/docker-compose.yml +++ b/nifi/docker-compose.yml @@ -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: diff --git a/rehook/docker-compose.yml b/rehook/docker-compose.yml index 94cf497..5df0d9f 100644 --- a/rehook/docker-compose.yml +++ b/rehook/docker-compose.yml @@ -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