Skip to content

Instantly share code, notes, and snippets.

@jghorton14
Created September 22, 2020 12:50
Show Gist options
  • Save jghorton14/644a5a31ade52435ee8e7407b45b549d to your computer and use it in GitHub Desktop.
Save jghorton14/644a5a31ade52435ee8e7407b45b549d to your computer and use it in GitHub Desktop.
Create new Docker Container and run on localhost:8080
#!/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