- Docker: https://docs.docker.com/get-docker/
- Docker Compose: https://docs.docker.com/compose/install/
- Disk Space: under 7GB
- RAM and CPU: no special requirements (2GB RAM)
- Go to the
nifi-docker
folder - Start and build the Container using docker compose:
docker compose up --build
- Wait until the application has started
- The Nifi Web-Interface including the data-flow at:
https://localhost:8443/nifi
- login data:
- user:
admin
- pw:
test12345678
- user:
- login data:
- For the conversion you first have to start the existing Nifi
Controller services
- stop container:
ctrl+c
(docker compose down
)
- all data is persisted in local folder
./data/
- Files can be shared via the
shared_folder
between the container and your machine
-
if container does not start (warning: this might delete component configuration!):
-
stop container:
ctrl+c
,docker compose down -v
-
remove current configuration:
rm data/conf/* -rf
-
copy
./backup/conf
to./data/conf
:cp ./backup/conf/* ./data/conf/ -rf
-
docker compose up --force-recreate --build
-