2020-02-18 23:55:06 -05:00
|
|
|
|
#!/bin/bash -e
|
|
|
|
|
|
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
2020-05-21 02:11:19 -04:00
|
|
|
|
. "$DIR/.common.sh"
|
2020-02-18 23:55:06 -05:00
|
|
|
|
|
|
|
|
|
# Ensure docker-compose exists
|
|
|
|
|
if hash docker-compose 2>/dev/null; then
|
|
|
|
|
cd "${DIR}/.."
|
|
|
|
|
echo -e "${BLUE}❯ ${CYAN}Starting Dev Stack ...${RESET}"
|
|
|
|
|
|
|
|
|
|
docker-compose up -d --remove-orphans --force-recreate --build
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo -e "${CYAN}Admin UI: http://127.0.0.1:3081${RESET}"
|
|
|
|
|
echo -e "${CYAN}Nginx: http://127.0.0.1:3080${RESET}"
|
|
|
|
|
echo -e "${CYAN}Swagger Doc: http://127.0.0.1:3001${RESET}"
|
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
|
|
if [ "$1" == "-f" ]; then
|
|
|
|
|
echo -e "${BLUE}❯ ${YELLOW}Following Backend Container:${RESET}"
|
2021-07-25 07:09:02 -04:00
|
|
|
|
docker logs -f npm_core
|
2020-02-18 23:55:06 -05:00
|
|
|
|
else
|
|
|
|
|
echo -e "${YELLOW}Hint:${RESET} You can follow the output of some of the containers with:"
|
2021-07-25 07:09:02 -04:00
|
|
|
|
echo " docker logs -f npm_core"
|
2020-02-18 23:55:06 -05:00
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
echo -e "${RED}❯ docker-compose command is not available${RESET}"
|
|
|
|
|
fi
|