07.install_docker.sh 391 B

12345678910111213141516
  1. #!/bin/bash
  2. # fail if any commands fails
  3. set -e
  4. # debug log
  5. #set -x
  6. echo "Installing docker requires to manually install the application."
  7. echo "After downloading please install manually"
  8. mkdir -p ~/Downloads
  9. cd ~/Downloads || return
  10. curl -OL "https://desktop.docker.com/mac/stable/Docker.dmg"
  11. open "Docker.dmg"
  12. read -p "Press enter to continue after Docker installation..."
  13. rm Docker.dmg