Small collection of common firefighting calculators used by IC's (Incident Commanders). Coding is all HTML, CSS, Bootstrap with jQuery form validation
First, build the image
# Build the image
docker build -t fcalc .
Run the built image
# Run the image
docker run -p 5000:90 fcalc
In a browser, navigate to
# Launch the site
localhost:5000
This will stop and remove all running images. If you do not want this behaviour, you must stop and remove them individually.
# List the containers
sudo docker ps
# Stop The Containers
sudo docker stop $(sudo docker ps -aq)
# Remove All Stopped Containers
sudo docker rm $(sudo docker ps -aq)
This app can be run without Docker. Just checkout the repository, then
browse to and open the web/index.html
file.