Standalone Instance, Unsecured
The standalone unsecured instance runs a NiFi instance by itself. This is the minimum configuration needed to run a NiFi instance.
docker run --name nifi \
-p 18080:8080 \
-d \
apache/nifi:latest
This will provide a running instance, exposing the instance UI to the host system on
port 18080, viewable at http://localhost:18080/nifi
.