Advertisement
Javi

Azure: IoT workstation init cloud

May 29th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. sudo apt update
  4. sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
  5. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  6. sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic test"
  7. sudo apt update
  8. sudo apt install docker-ce -y
  9. sudo apt install python-pip -y
  10. pip install azure-iot-edge-runtime-ctl
  11. sudo apt-get remove unscd -y
  12. sudo usermod -aG docker iot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement