From be41fc7ca4bc2260b2e6da24937e24528c5c7456 Mon Sep 17 00:00:00 2001 From: keepittechie Date: Mon, 18 Mar 2024 13:25:37 -0700 Subject: [PATCH] updating readme to make it easier to deploy using docker --- .github/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/README.md b/.github/README.md index 08e56e39..3573edc6 100644 --- a/.github/README.md +++ b/.github/README.md @@ -779,8 +779,16 @@ Click the button below, to deploy to Vercel 👇 ### Deploying - Option #3: Docker +Pull Image: `docker pull lissy93/web-check` + Run `docker run -p 3000:3000 lissy93/web-check`, then open [`localhost:3000`](http://localhost:3000) +or: + +Run `docker -d --name webcheck -p 3000:3000 --restart=always lissy93/web-check`, then open [`localhost:3000`](http://localhost:3000) + +This command sets up a detached container, gives it a name (webcheck), and configures it to auto-restart, enabling continuous operation in your environment for OSINT searches. +
Docker Options