From ae433c0902e3eea467e72436444f742ee9934e8a Mon Sep 17 00:00:00 2001 From: Klaus Eckelt Date: Fri, 29 Dec 2023 08:58:02 +0000 Subject: [PATCH] match internal jupyterlab port with forwarded port --- .devcontainer/docker-compose.yml | 4 ++-- ui-tests/README.md | 2 +- ui-tests/playwright.config.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index 9288ca8..e15c5f2 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -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/ diff --git a/ui-tests/README.md b/ui-tests/README.md index dbe6e8a..573b3cf 100644 --- a/ui-tests/README.md +++ b/ui-tests/README.md @@ -122,7 +122,7 @@ jlpm start ```sh cd ./ui-tests -jlpm playwright codegen localhost:8888 +jlpm playwright codegen localhost:13013 ``` ## Debug tests diff --git a/ui-tests/playwright.config.js b/ui-tests/playwright.config.js index 9ece6fa..33aed36 100644 --- a/ui-tests/playwright.config.js +++ b/ui-tests/playwright.config.js @@ -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 }