Docker image of Apache Nifi
Provides a Dockerfile and associated scripts for configuring an instance of Apache NiFi With using ENV variable you are able to manage each property in nifi.properties file.
-
Build the image:
docker build . -t nifi:latest
-
Run the image:
docker run -it -d --name nifi \ -p 8080:8080 -e nifi_ui_banner_text="my banner"
-e nifi_ui_banner_text="my banner"
will setup nifi.ui.banner.text
key in nifi.properties file. You only need to keep in mind that "." should be replaced by "_".