Skip to content

Commit

Permalink
doc: add other start options
Browse files Browse the repository at this point in the history
  • Loading branch information
robot9706 committed Oct 5, 2023
1 parent a5ee2bd commit 7d1c5a3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@
2. Open `localhost:8000` in browser
3. Enjoy!

### Other options

* Start without authorization: `docker run -p 8000:8000 -e DISABLE_AUTH=true -d ghcr.io/dyrector-io/darklens:latest`
* Select a stronger JWT secret: `docker run -p 8000:8000 -e JWT_SECRET=supersecret -d ghcr.io/dyrector-io/darklens:latest`
* Run on a public domain: `docker run -p 8000:8000 -e PUBLIC_URL=example.com AGENT_ADDRESS=example.com:5000 -d ghcr.io/dyrector-io/darklens:latest`
* Note: Agents require gRPC port 5000 to connect to the service
* Persist data: `docker run -p 8000:8000 -v darklens-data:/var/lib/darklens -d ghcr.io/dyrector-io/darklens:latest`

## Development

1. Setup backend
Expand Down

0 comments on commit 7d1c5a3

Please sign in to comment.