diff --git a/redeploy.sh b/redeploy.sh new file mode 100644 index 0000000..8648344 --- /dev/null +++ b/redeploy.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# Build/rebuild the image. +docker build --no-cache -t notes-server . + +# Run the image, listening on port 8080. +docker run -p 8080:80 -t notes-server