You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "You have been added to the docker group. In order to continue you may need to log out and back in again or restart your system in order to pick up the group change"
exit 1
fi
# Check if docker compose is installed. If it isn't, direct user to instructions
if [ -z "$(command -v docker compose)" ];
then
echo "Please install docker compose. See https://docs.docker.com/compose/install/"
exit 1
fi
# Check if composer is installed. If it isn't, direct user to instructions
if [ -z "$(command -v composer)" ];
then
echo "Please download and install composer. See https://getcomposer.org/download/"