https://github.com/zer0beat/minifi-for-docker
https://github.com/zer0beat/minifi-for-docker
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zer0beat/minifi-for-docker
- Owner: zer0beat
- License: gpl-3.0
- Created: 2018-02-12T22:39:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-13T22:30:46.000Z (over 8 years ago)
- Last Synced: 2025-07-11T16:53:55.154Z (11 months ago)
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Apache MiNiFi for Docker
## Version 0.4.0
Provides a Dockerfile and associated scripts for configuring an instance of [Apache MiNiFi](https://nifi.apache.org/minifi/).
## Sample Usage:
From your checkout directory:
### MiNiFi
1. Build the image
VERSION=0.4.0
cd ${VERSION}
docker build --build-arg VERSION=${VERSION} -t minifi:${VERSION} .
2. Run the image
VERSION=0.4.0
docker run --rm -v /path/to/config.yml:/opt/minifi/conf/config.yml minifi:${VERSION}
### MiNiFi Toolkit
1. Build the image
VERSION=0.4.0
cd ${VERSION}/toolkit
docker build --build-arg VERSION=${VERSION} -t minifi-toolkit:${VERSION} .
2. Run the image
VERSION=0.4.0
docker run --rm -ti -v /path/to/data/:/data/ minifi-tookit:${VERSION} sh