Created
April 3, 2020 01:10
Build and run docker
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
echo "Building..." | |
docker build -t my-app:latest . | |
echo "\nRunning..." | |
docker run --rm -it -p80:4000 my-app:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment