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
docker run -dp 8765:8765 ghcr.io/ydb-platform/local-ydb:nightly
17
17
```
18
18
19
19
Open http://localhost:8765 to view it in the browser.
@@ -25,7 +25,7 @@ Open http://localhost:8765 to view it in the browser.
25
25
docker run --rm -ti --name ydb-local -h localhost \
26
26
-p 8765:8765 \
27
27
-e MON_PORT=8765 \
28
-
cr.yandex/yc/yandex-docker-local-ydb:latest
28
+
ghcr.io/ydb-platform/local-ydb:nightly
29
29
```
30
30
2. Install dependencies with `npm ci`
31
31
3. Run the frontend app in the development mode, via invoking `npm run dev`
@@ -38,11 +38,8 @@ For API reference, open Swagger UI on http://localhost:8765/viewer/api/.
38
38
39
39
[Docs on YDB docker images](https://ydb.tech/en/docs/getting_started/self_hosted/ydb_docker)
40
40
41
-
Image `cr.yandex/yc/yandex-docker-local-ydb` corresponds to `:latest` tag. It's the latest stable ydb version.
42
-
43
-
To test new features, you can use ydb version that is currently in testing mode with `cr.yandex/yc/yandex-docker-local-ydb:edge` image
44
-
or use a build from `main` brunch with `ghcr.io/ydb-platform/local-ydb:nightly` image.
45
-
Also you can set specific version like `cr.yandex/yc/yandex-docker-local-ydb:23.1`
41
+
To test new features, you can use ydb version built from `main` brunch with `ghcr.io/ydb-platform/local-ydb:nightly` image.
42
+
Also you can set specific version like `ghcr.io/ydb-platform/local-ydb:24.1`
46
43
47
44
### Custom configuration in dev mode with .env file
48
45
@@ -105,7 +102,7 @@ npm run test:e2e
105
102
106
103
### CI
107
104
108
-
E2E tests are run in CI in `e2e_tests` job. Tests run on Playwright `webServer` (it is started with `npm run dev`), `webServer` uses docker container `cr.yandex/yc/yandex-docker-local-ydb` as backend.
105
+
E2E tests are run in CI in `e2e_tests` job. Tests run on Playwright `webServer` (it is started with `npm run dev`), `webServer` uses docker container `ghcr.io/ydb-platform/local-ydb:nightly` as backend.
109
106
110
107
## Making a production bundle.
111
108
@@ -118,7 +115,7 @@ To test production bundle with latest YDB backend release, do the following:
118
115
119
116
1. Install dependencies with `npm ci`
120
117
2. Build a production bundle with a few tweaks for embedded version: `npm run build:embedded`.
0 commit comments