From 1d49faf6f083c7fec9524fa93a2a96ab317d18b3 Mon Sep 17 00:00:00 2001 From: Hammad Date: Wed, 1 Jun 2022 16:18:51 +0300 Subject: [PATCH] pull from docker hub --- docs/local-dev.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/local-dev.md b/docs/local-dev.md index 3abd703..39f19d9 100644 --- a/docs/local-dev.md +++ b/docs/local-dev.md @@ -16,6 +16,20 @@ Now point your browser to `http://localhost:8080`. - To debug the NodeJS server run `docker logs snapdrop_node_1`. +## Run locally by pulling image from Docker Hub + +Have docker installed, then use the command: +``` + docker pull linuxserver/snapdrop +``` + +To run the image, type (if port 8080 is occupied by host use another random port :80): +``` + docker run -d -p 8080:80 linuxserver/snapdrop +``` + + +