Maybe defaulting to turning everything off when the script runs wasn't a great idea
All checks were successful
Deploy to Fighter / Deploy (push) Successful in 22s
Deploy to Fighter / Notify (push) Successful in 1s

This commit is contained in:
Joey Hafner 2024-03-02 00:52:59 -08:00
parent b6d1abc911
commit d0d54f1ee8

View File

@ -1,9 +1,11 @@
#!/bin/bash #!/bin/bash
#set -x # debugging flag #set -x # debugging flag
# Clean up any remnants from unclean shutdown if "$1" == "clean"; then
docker stop $(docker ps -q) # shut down running containers # Clean up any remnants from unclean shutdown
docker rm $(docker ps -aq) # remove all containers docker stop $(docker ps -q) # shut down running containers
docker rm $(docker ps -aq) # remove all containers
fi
# Check for network mounted devices # Check for network mounted devices
# NAS SMB # NAS SMB