This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tap "homebrew/bundle" | |
tap "homebrew/core" | |
brew "hub" | |
brew "jq" | |
brew "shellcheck" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
######################################################################### | |
# Install Docker on Ubuntu 18.04 | |
# | |
# This is a shameless copy/condensation of the official instructions | |
# from docker's website. I just wanted a quick script to run to install | |
# it though. | |
# | |
# Se https://docs.docker.com/install/linux/docker-ce/ubuntu/ |