Skip to content

Commit

Permalink
updating readme to make it easier to deploy using docker
Browse files Browse the repository at this point in the history
  • Loading branch information
keepittechie committed Mar 18, 2024
1 parent 62a213d commit be41fc7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<details>
<summary>Docker Options</summary>

Expand Down

0 comments on commit be41fc7

Please sign in to comment.