Last active
June 3, 2026 18:59
-
-
Save pgwillia/7ce03065c06714f3eba2f99ea378e257 to your computer and use it in GitHub Desktop.
Tryining out Apache Nifi with docker compose with help from https://hub.docker.com/r/apache/nifi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: etl | |
| services: | |
| nifi: | |
| container_name: nifi | |
| ports: | |
| - 8443:8443 | |
| environment: | |
| - SINGLE_USER_CREDENTIALS_USERNAME=admin | |
| - SINGLE_USER_CREDENTIALS_PASSWORD=mysecretpassword | |
| image: apache/nifi:latest | |
| volumes: | |
| - ./nifi_data:/opt/nifi/nifi-current |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment