Created
September 16, 2021 12:06
-
-
Save metaskills/ed160ccd721daa4c49e09ed17b88fb01 to your computer and use it in GitHub Desktop.
Part of Custom Ink's `strap-codespaces` repo. Install Docker.
This file contains hidden or 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
#!/bin/sh | |
set -e | |
if ! [ -x "$(command -v docker)" ]; then | |
echo "== [Custom Ink Strap Codespaces] installing 'docker' and 'docker-compose'... ==" | |
URL="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/main/script-library/docker-in-docker-debian.sh" | |
curl -s $URL | sudo bash /dev/stdin 1> /dev/null | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment