This repository has been archived on 2021-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
eltelive/clean-project.sh

10 lines
231 B
Bash
Executable File

#!/bin/sh
echo "Cleaning up everything in the project..."
if [ -f deploy/config ] && . ./deploy/config ; then
docker stop $EL_CONTAINERNAME
docker rm $EL_CONTAINERNAME
docker rmi $EL_CONTAINERNAME
fi
rm -rf deploy/generated