From fda271d40062be7d1ac8eca9d525c19ae887f937 Mon Sep 17 00:00:00 2001 From: gopuman Date: Sun, 5 Nov 2023 22:18:33 +0000 Subject: [PATCH] deploy: 503599bc4961ccd86ee74826ec25943ed152c632 --- d5/d74/md__2github_2workspace_2README.html | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/d5/d74/md__2github_2workspace_2README.html b/d5/d74/md__2github_2workspace_2README.html index 364ed0c60..e87c86bd5 100644 --- a/d5/d74/md__2github_2workspace_2README.html +++ b/d5/d74/md__2github_2workspace_2README.html @@ -181,15 +181,13 @@

  • Run a Container with the Pulled Image
    Launch a Docker container using the ResilientDB image you just pulled:
      -
    • For amd architecture, run:
      docker run -it expolab/resdb:amd64 bash
      +
    • For amd architecture, run:
      docker run -d --name myserver expolab/resdb:amd64
    • -
    • For Apple Silicon (M1/M2) architecture, run: shell docker run -it expolab/resdb:arm64 bash
    • +
    • For Apple Silicon (M1/M2) architecture, run: shell docker run -d --name myserver expolab/resdb:arm64
  • -
  • Start the kv_service within the Container
    - Once you're inside the container, start the kv_service by running the following command:
    ./service/tools/kv/server_tools/start_kv_service.sh
    -
  • -
  • Test with Set and Get Commands Verify the functionality of the service by performing set and get operations:
      +
    • Test with Set and Get Commands Exec into the running server:

      docker exec -it myserver bash
      +

      Verify the functionality of the service by performing set and get operations:

      • Set a test value:
        bazel-bin/service/tools/kv/api_tools/kv_service_tools service/tools/config/interface/service.config set test test_value
      • Retrieve the test value:
        bazel-bin/service/tools/kv/api_tools/kv_service_tools service/tools/config/interface/service.config get test