Created
May 20, 2016 18:14
-
-
Save marhan/4b7483b588ee1577f1eaf674ae77d2e5 to your computer and use it in GitHub Desktop.
Installs the Hypriot Docker binaries on Raspbian Jessie.
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/bash | |
# Install Hypriot Docker | |
apt-get install -y debian-archive-keyring | |
curl -L "https://packagecloud.io/Hypriot/Schatzkiste/gpgkey" 2> /dev/null | apt-key add - | |
curl -sSf "https://packagecloud.io/install/repositories/Hypriot/Schatzkiste/config_file.list?os=raspbian&dist=jessie&source=script" > "/etc/apt/sources.list.d/Hypriot_Schatzkiste.list" | |
apt-get update && apt-get install -y docker-hypriot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment