Skip to content

Commit

Permalink
Update host path from relative to absolute
Browse files Browse the repository at this point in the history
  • Loading branch information
ynuwenhof committed Jan 21, 2023
1 parent d5db5b2 commit 14e3dcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ this will return an [Argon2id](https://en.wikipedia.org/wiki/Argon2) password ha
After installing, you can run the server with:

```bash
koblas -a 0.0.0.0 --auth -u path/to/users.toml
koblas -a 0.0.0.0 --auth -u /path/to/users.toml
```

this will bind the server to `0.0.0.0:1080`.
Expand Down Expand Up @@ -69,7 +69,7 @@ After building the image, you can run the server with:

```bash
docker run -d -p 1080:1080 \
-v path/to/users.toml:/etc/koblas/users.toml \
-v /path/to/users.toml:/etc/koblas/users.toml \
-e RUST_LOG=debug \
-e KOBLAS_AUTHENTICATE=true \
-e KOBLAS_ANONYMIZE=false \
Expand Down

0 comments on commit 14e3dcc

Please sign in to comment.