Docker container for managing Nginx proxy hosts with a simple, powerful interface
#!/bin/bash -e
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
. "$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