Skip to content

Installation: Docker Linux

Koushik Dutta edited this page Jan 29, 2022 · 21 revisions
  1. Install Docker if necessary.
  • The following steps assume you added your user to the docker group. Otherwise the commands will fail without sudo (do not use this).
  1. Install Watchtower. This will handle autoupdates of Scrypted.
docker run -d --name watchtower -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower
  1. Run the following in Terminal to install Scrypted:
# pull the image
docker pull koush/scrypted
# run the image, saving the database and configuration files in a subdirectory named "scrypted"
docker run \
  --network host \
  -d --restart unless-stopped \
  -v ~/.scrypted/volume:/server/volume koush/scrypted

Scrypted is now running at: https://localhost:10443/

Note that it is https and that you'll be asked to approve/ignore the website certificate.

Clone this wiki locally