diff --git a/.github/README.md b/.github/README.md index 08e56e3..3573edc 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