Hi Ytalo, I also saw your post on a GitHub issue [1] and will try to resolve your questions here.
Your images did not come through, but the crux of the matter is that given our current procedure we do not have a latest tag. This is something to work out for future images as per NIFI-4097 [2]. The current versions released and available can be seen on Docker Hub. For those generated by the NiFi community specifically, and are products of a release vote, these can be found at https://hub.docker.com/r/apache/nifi/tags/. We currently have two such images for 1.2.0 and 1.3.0. You can pull these images via: `docker pull apache/nifi:1.3.0` You could then follow up to run the image with a typical docker run command, such as `docker run -P apache/nifi:1.3.0`. Said command would launch the container using its defaults and allocating random ports to those exposed by the Dockerfile [3]. Specifically, this would map the container's ports 8080 (Web UI) and 8181 (Site to Site Port) to your host system. I saw on your GitHub issue that you were attempting to run 1.4.0-SNAPSHOT. Per ASF guidelines we cannot publish SNAPSHOT artifacts and their ilk without a release vote. However, if you were interested in developing against that or evaluating, you can work against a source code checkout of NiFi and perform a `mvn clean install -Pdocker` to generate the SNAPSHOT image locally. Let us know if you have any other questions! [1] https://github.com/apache/nifi/commit/3da8b94dddc3b08ecbf10f368240dd1b3e992bbf#commitcomment-23155078 [2] https://issues.apache.org/jira/browse/NIFI-4097 [3] https://hub.docker.com/r/apache/nifi/~/dockerfile/ On Tue, Jul 18, 2017 at 7:32 AM, Borja Mori, Ytalo <[email protected]> wrote: > Hello Wifi Dev Team, > > I am trying to use the apache/nifi docker image, but I am getting the > following error > > > Even with: > > Could you provide the steps to run the docker image? > I have been looking on Saint Google but I don’t get any good answer so far. > > Best wishes, > Ytalo Borja > >
