Created
September 22, 2020 12:50
-
-
Save jghorton14/644a5a31ade52435ee8e7407b45b549d to your computer and use it in GitHub Desktop.
Create new Docker Container and run on localhost:8080
This file contains 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
#!/bin/bash | |
sudo docker run --name nifi \ | |
-p 8080:8080 \ | |
-d \ | |
apache/nifi:latest | |
echo "----------Docker is create new container and run on http://localhost:8080/nifi ----------" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment