Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naskio/neon8n
Docker image of an enhanced version of n8n
https://github.com/naskio/neon8n
docker docker-compose docker-image enhanced n8n n8n-nodes python python3
Last synced: about 2 months ago
JSON representation
Docker image of an enhanced version of n8n
- Host: GitHub
- URL: https://github.com/naskio/neon8n
- Owner: naskio
- License: mit
- Created: 2022-02-28T17:21:29.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-07T02:17:22.000Z (about 2 months ago)
- Last Synced: 2024-11-07T03:22:46.292Z (about 2 months ago)
- Topics: docker, docker-compose, docker-image, enhanced, n8n, n8n-nodes, python, python3
- Language: Dockerfile
- Homepage:
- Size: 76.2 KB
- Stars: 12
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# neon8n
Docker image of an enhanced version of n8n.
[![n8n](https://github.com/naskio/neon8n/blob/main/assets/n8n-logo.png?raw=true)](https://nask.io)
[GitHub repository](https://github.com/naskio/neon8n)
[Docker Hub](https://hub.docker.com/r/naskio/neon8n/)
[![Docker Pulls](https://img.shields.io/docker/pulls/naskio/neon8n.svg?style=for-the-badge)](https://hub.docker.com/r/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:
```yaml
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/.n8nvolumes:
data:
```-----------------------------------------------------
# Acknowledgements
Based on [n8n-python](https://github.com/naskio/docker-n8n-python)
# Contribute
Contributions are welcome! Please open an issue or pull request if you have any suggestions.
See the [contributing guide](./CONTRIBUTING.md) for more information.
# License
[MIT](./LICENSE)