Skip to content

Commit

Permalink
match internal jupyterlab port with forwarded port
Browse files Browse the repository at this point in the history
  • Loading branch information
keckelt committed Dec 29, 2023
1 parent 99958e9 commit ae433c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ services:
[
'jupyter',
'lab',
'--port=8888',
'--port=13013',
'--no-browser',
"--ServerApp.token=''",
"--ServerApp.password=''",
'/workspaces/loops/notebooks/'
]
ports:
- 13013:8888
- 13013:13013
volumes:
- ..:/workspaces/loops/
2 changes: 1 addition & 1 deletion ui-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jlpm start

```sh
cd ./ui-tests
jlpm playwright codegen localhost:8888
jlpm playwright codegen localhost:13013
```

## Debug tests
Expand Down
2 changes: 1 addition & 1 deletion ui-tests/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
...baseConfig,
webServer: {
command: 'jlpm start',
url: 'http://localhost:8888/lab',
url: 'http://localhost:13013/lab',
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI
}
Expand Down

0 comments on commit ae433c0

Please sign in to comment.