🏷️

neon8n

Column
Date
Mar 19, 2022 04:58 PM
Tags
地址
docker pull naskio/neon8n

Extra features

  • Python 3.10 included by default.
  • Python Function
    • node: run python snippets on n8n.
  • Has Changed
    • node: redirect the flow according to comparison of current and previous execution inputs.
  • InfluxDB
    • node: write/read data to/from InfluxDB 2.x using the Flux Language.

Example

Docker Compose file:
version: '3.8'

services:
  neon8n:
    image: naskio/neon8n:latest
    restart: always
    container_name: neon8n
    environment:
      GENERIC_TIMEZONE: ${TIMEZONE}
      TZ: ${TIMEZONE}
    ports:
      - "5678:5678"
    volumes:
      - data:/home/node/.n8n

volumes:
  data: