Skip to content

Commit 73debbc

Browse files
committed
Remove unrelevant information about healthcheck
1 parent 0074a09 commit 73debbc

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

docs/using/common.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,10 @@ You can pass [Jupyter server options](https://jupyter-server.readthedocs.io/en/l
2222
2. To set the [base URL](https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html#running-the-notebook-with-a-customized-url-prefix) of the notebook server, you can run the following:
2323

2424
```bash
25-
docker run -it --rm -p 8888:8888 --no-healthcheck jupyter/base-notebook \
25+
docker run -it --rm -p 8888:8888 jupyter/base-notebook \
2626
start-notebook.sh --NotebookApp.base_url=/customized/url/prefix/
2727
```
2828

29-
Note: We pass the `--no-healthcheck` parameter when setting a custom `base_url` for the Jupyter server
30-
because our current implementation for doing healthcheck assumes the `base_url` to be `/` (the default).
31-
Without using this parameter, the container may run, but its state will be "unhealthy".
32-
Alternatively, you can [use your own command for healthcheck](https://docs.docker.com/engine/reference/run/#healthcheck)
33-
using the `--health-cmd` parameter.
34-
3529
## Docker Options
3630

3731
You may instruct the `start-notebook.sh` script to customize the container environment before launching the notebook server.

0 commit comments

Comments
 (0)