Product-Manager/remove-app.sh
2022-04-25 17:37:08 +05:30

12 lines
431 B
Bash

#!/bin/bash
echo "Removing the app.."
echo "Removing the product-manager-backend"
docker stop product-manager-backend && docker rm -f product-manager-backend
echo "removing the product-manager-frontend container"
docker stop product-manager-frontend && docker rm -f product-manager-frontend
echo "removing the product-manager-db container"
docker stop product-manager-db && docker rm -f product-manager-db
echo "App removed."