notes/redeploy.sh
2025-02-03 00:37:52 +10:30

7 lines
163 B
Bash
Executable file

#!/bin/bash
# Build/rebuild the image.
docker build --no-cache -t notes-server .
# Run the image, listening on port 8080.
docker run -p 42069:80 -t notes-server