`
-1. Click on the JupyterLab / VSCode link, or connect directly to the SSH session.
-1. In JupyterLab / VSCode, access the experiment's repository in the `environment/task_repository` folder.
+1. Click on the JupyterLab / VS Code link, or connect directly to the SSH session.
+1. In JupyterLab / VS Code, access the experiment's repository in the `environment/task_repository` folder.
+
+
+### Command line options
+
+
+
+| Command line options | Description | Default value |
+|-----|---|---|
+| `--jupyter-lab` | Download a Jupyter-Lab environment | `true` |
+| `--vscode-server` | Download a VSCode environment | `true` |
+| `--public-ip` | Register the public IP of the remote machine (if you are running the session on a public cloud) | Session runs on the machine whose agent is executing the session|
+| `--init-script` | Specify a BASH init script file to be executed when the interactive session is being set up | `none` or previously entered BASH script |
+| `--user-folder` | Specify the path for the session's remote base folder for the session | Home folder(`~/`) or previously entered user folder path |
+| `--config-file` | Specify a path to another configuration file for `clearml-session` to store its previous state | `.clearml_session.json` or previously entered configuration file |
+| `--remote-gateway` | Specify a gateway IP to pass to the interactive session, if an external address needs to be accessed | `none`|
+| `--base-task-id` | Pass the ID of a task that will become the base task, so the session will use its configurations | `none` or the previously entered base task |
+| `--disable-keepalive` | Disable transparent proxy that keep sockets alive to maintain the connection to the remote resource | `false` |
+| `--queue-excluded-tag` | The queue option list will exclude queues with specified tags. See the `tags` parameter in the [queues.create](../references/api/endpoints#post-queuescreate) API call | `none` |
+| `--queue-include-tag` | The queue option list will include only queues with specified tags. See the `tags` parameter in the [queues.create](../references/api/endpoints#post-queuescreate) API call | `none` |
+| `--skip-docker-network` | Pass the `--network host` flag to the Docker that is launching the remote session. See [Networking using the host network](https://docs.docker.com/network/network-tutorial-host/) | `false`|
+| `--username`| Set your own SSH username for the interactive session | `root` or a previously used username |
+| `--password`| Set your own SSH password for the interactive session | A randomly generated password or a previously used one |
+
+
\ No newline at end of file
diff --git a/docs/img/session_jupyter.png b/docs/img/session_jupyter.png
new file mode 100644
index 00000000..4a1515e7
Binary files /dev/null and b/docs/img/session_jupyter.png differ
diff --git a/docs/img/session_vs_code.png b/docs/img/session_vs_code.png
new file mode 100644
index 00000000..cf0ddf82
Binary files /dev/null and b/docs/img/session_vs_code.png differ
diff --git a/src/css/custom.css b/src/css/custom.css
index 25226f49..30fa7f94 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -492,6 +492,17 @@ html[data-theme="light"] .footer__link-item[href*="stackoverflow"] {
border-bottom-right-radius: var(--ifm-card-border-radius);
}
+.markdown table code {
+ font-size: 12px;
+}
+
+@media only screen and (min-width: 1400px) {
+ .tbl-cmd tbody tr td:first-child code {
+ white-space: nowrap;
+ }
+}
+
+
html[data-theme="dark"] .markdown thead th {
color: var(--ifm-color-gray-600);
}