Add redeploy script

This commit is contained in:
Brad Treloar 2025-02-03 00:33:41 +10:30
parent 7a2acb560a
commit aebc1b59d7

7
redeploy.sh Normal file
View file

@ -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