Skip to content

Commit 30e2a48

Browse files
committed
doc: fix jupyterlab config example which will make error in some case
1 parent 8f33878 commit 30e2a48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/ides/configuring-web-ides.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -235,13 +235,13 @@ resource "coder_agent" "coder" {
235235
dir = "/home/coder"
236236
startup_script = <<-EOF
237237
pip3 install jupyterlab
238-
jupyter lab --ServerApp.base_url=/@${data.coder_workspace.me.owner}/${data.coder_workspace.me.name}/apps/jupyter/ --ServerApp.token='' --ip='*'
238+
jupyter lab --ServerApp.token='' --ip='*'
239239
EOF
240240
}
241241
242242
resource "coder_app" "jupyter" {
243243
agent_id = coder_agent.coder.id
244-
url = "http://localhost:8888/@${data.coder_workspace.me.owner}/${data.coder_workspace.me.name}/apps/jupyter"
244+
url = "http://localhost:8888/lab"
245245
icon = "/icon/jupyter.svg"
246246
}
247247
```

0 commit comments

Comments
 (0)