Advertisement
salahzar

HF on ubuntu 16.04

Jul 26th, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.62 KB | None | 0 0
  1. # INSTALL Docker in 4 steps
  2.  
  3. # 1) add docker security key
  4. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  5.  
  6. # 2) add repository
  7. sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
  8.  
  9. # 3) refresh installation sources with new repository
  10. sudo apt-get update
  11.  
  12. # 4) actual installation
  13. sudo apt-get install -y docker-ce
  14.  
  15.  
  16. sudo systemctl status docker
  17.  
  18. # 5) launch highfidelity with docker:
  19. docker run -d -p 40100-40110:40100-40110  -p 40100-40110:40100-40110/udp  -p 8000-8010:8000-8010 -p 8000-8010:8000-8010/udp  highfidelity/hifi:0.70.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement