Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # INSTALL Docker in 4 steps
- # 1) add docker security key
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- # 2) add repository
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- # 3) refresh installation sources with new repository
- sudo apt-get update
- # 4) actual installation
- sudo apt-get install -y docker-ce
- sudo systemctl status docker
- # 5) launch highfidelity with docker:
- 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