https://github.com/zer0beat/nifi-for-docker
Apache NiFi for Docker
https://github.com/zer0beat/nifi-for-docker
apache docker docker-image dockerfile nifi
Last synced: 7 months ago
JSON representation
Apache NiFi for Docker
- Host: GitHub
- URL: https://github.com/zer0beat/nifi-for-docker
- Owner: zer0beat
- License: gpl-3.0
- Created: 2017-06-23T12:31:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-31T16:16:02.000Z (almost 7 years ago)
- Last Synced: 2025-01-19T22:41:54.125Z (9 months ago)
- Topics: apache, docker, docker-image, dockerfile, nifi
- Language: Shell
- Homepage: https://nifi.apache.org/
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/zer0beat/nifi-for-docker)

# Apache NiFi for Docker
## Version 1.8.0
## Getting started
1. Start Nifi
$ VERSION=1.8.0
$ docker run --rm -p 8080:8080 nifi:${VERSION}2. Wait for the Nifi initialization
3. Access to Nifi interface
http://localhost:8080/nifi## Build docker image from source
$ VERSION=1.8.0
$ FOLDER=1.x.x
$ docker build --build-arg VERSION=${VERSION} -t z0beat/nifi:${VERSION} ./${FOLDER}## Extract default configuration from docker image
$ docker run --rm -v /path/to/nifi/conf:/opt/conf --entrypoint="" z0beat/nifi:1.8.0 cp -r /opt/nifi/conf/. /opt/conf/