Skip to content

Installing Docker (Linux)

Koushik Dutta edited this page Jan 29, 2022 · 6 revisions

Run the following in Terminal to install Docker:

curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
sudo usermod -aG docker $USER
newgrp docker
# you may need to log out and back in to apply the user changes.

Docker is now installed. You can continue with the Scrypted Installation.