Skip to content

us3r/apache-nifi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-nifi

Docker image of Apache Nifi

Apache NiFi logo

dockerfile-apache-nifi

Apache NiFi Dockerfile

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.

  1. Build the image:

    docker build . -t nifi:latest
    
  2. 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 "_".