diff --git a/crates/cli/README.md b/crates/cli/README.md index d0a04db..b5c4a29 100644 --- a/crates/cli/README.md +++ b/crates/cli/README.md @@ -612,7 +612,7 @@ Note: this assumes the `git-next-server.toml` has a `listen.http.port` of This will run with the `server start` options: ```shell -docker run -it -v .:/app/ git.kemitix.net/kemitix/git-next:latest +docker run -it -p "8080:8092" -v .:/app/ git.kemitix.net/kemitix/git-next:latest ``` To perform `server init`: diff --git a/crates/cli/src/tui/README.md b/crates/cli/src/tui/README.md index 103b261..2a9ef0f 100644 --- a/crates/cli/src/tui/README.md +++ b/crates/cli/src/tui/README.md @@ -17,7 +17,9 @@ the current directory for this. If you want to persist the clones of your monitored repos then point `storage.path` in `git-next-server.toml` to the the directory `/app`, (e.g. `path = "/app/data"`). -`docker run -it -v .:/app/ git.kemitix.net/kemitix/git-next:latest server start --ui` +Map the port your webhook notifications are arriving on to the port specified in `listen.http.port`. + +`docker run -it -p "8080:8092" -v .:/app/ git.kemitix.net/kemitix/git-next:latest server start --ui` ## logs