Skip to content

Installation: Docker Linux

Koushik Dutta edited this page Jan 29, 2022 · 21 revisions
  1. Install Docker if necessary.
  2. Install Watchtower to automatically update your Scrypted Docker image after installation.
  3. 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