This is an automated email from the ASF dual-hosted git repository.

apratim pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 6282b5c1 Minor fixes to the Dockerfile, Entrypoint and Readme (#157)
6282b5c1 is described below

commit 6282b5c136a76963c457daf617ce36e2187ec8a6
Author: Gopal Nambiar <[email protected]>
AuthorDate: Fri Sep 27 11:36:03 2024 -0700

    Minor fixes to the Dockerfile, Entrypoint and Readme (#157)
    
    * Minor fixes to the Dockerfile, Entrypoint and Readme
    
    * Update README.md
    
    ---------
    
    Co-authored-by: gopuman 
<[email protected]>
---
 Docker/Dockerfile | 2 +-
 README.md         | 7 +++++++
 entrypoint.sh     | 2 ++
 3 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/Docker/Dockerfile b/Docker/Dockerfile
index c5f82544..c68060dd 100644
--- a/Docker/Dockerfile
+++ b/Docker/Dockerfile
@@ -39,7 +39,7 @@ RUN curl -fsSL https://bazel.build/bazel-release.pub.gpg | 
gpg --dearmor > bazel
     && mv bazel.gpg /etc/apt/trusted.gpg.d/ \
     && echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable 
jdk1.8" | tee /etc/apt/sources.list.d/bazel.list \
     && curl https://bazel.build/bazel-release.pub.gpg | apt-key add - \
-    && apt-get update && apt-get install -y bazel=5.0.0 \
+    && apt-get update && apt-get install -y bazel=6.0.0 \
     && rm /etc/apt/sources.list.d/bazel.list
 
 # Set the working directory
diff --git a/README.md b/README.md
index e46106b7..a88a449a 100644
--- a/README.md
+++ b/README.md
@@ -356,4 +356,11 @@ We also provide access to a [deployment 
script](https://github.com/resilientdb/r
    docker exec -it myserver bash
    ```
 
+5. **NOTE: If you encounter a Connection Refused error**
+
+   Run the following command within the container:
+   ```shell
+   ./service/tools/kv/server_tools/start_kv_service.sh
+   ```
+
    Verify the functionality of the service by performing set and get 
operations provided above [functions](README.md#functions).
diff --git a/entrypoint.sh b/entrypoint.sh
index 0b3d1019..dbd4ca2c 100755
--- a/entrypoint.sh
+++ b/entrypoint.sh
@@ -1,3 +1,5 @@
+#!/bin/bash
+
 #
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file

Reply via email to