SIGN IN SIGN UP

Docker container for managing Nginx proxy hosts with a simple, powerful interface

0 0 0 TypeScript
#!/bin/bash -e
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
2020-05-21 16:11:19 +10:00
. "$DIR/.common.sh"
# Make sure docker exists
if hash docker 2>/dev/null; then
cd "${DIR}/.."
echo -e "${BLUE} ${CYAN}Destroying Dev Stack ...${RESET}"
docker compose down --remove-orphans --volumes
else
echo -e "${RED} docker command is not available${RESET}"
fi