You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/getting_started/install_docker.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,16 +59,22 @@ docker-compose logs -f
59
59
60
60
### 4. Access JupyterLab
61
61
62
-
Once the container is running, open your browser and navigate to:
62
+
Once the container is running, retrieve the access URL (including the authentication token) from the logs:
63
63
64
+
```bash
65
+
docker-compose logs pyrit-jupyter
64
66
```
65
-
http://localhost:8888
67
+
68
+
Look for a line like:
69
+
70
+
```
71
+
http://127.0.0.1:8888/lab?token=<your-token>
66
72
```
67
73
68
-
By default, JupyterLab runs without authentication for ease of use.
74
+
Open that full URL in your browser. The token is required for access.
69
75
70
-
```{warning}
71
-
The default configuration has no password. For production use, consider adding authentication.
76
+
```{note}
77
+
JupyterLab is bound to `localhost` only and requires token authentication. Your API credentials are mounted into the container, so these protections prevent unauthorized access from other machines on your network.
0 commit comments