Skip to content

Commit 6282b5c

Browse files
gopumangopuman
and
gopuman
authored
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]>
1 parent 9a2b697 commit 6282b5c

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

Docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor > bazel
3939
&& mv bazel.gpg /etc/apt/trusted.gpg.d/ \
4040
&& echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list \
4141
&& curl https://bazel.build/bazel-release.pub.gpg | apt-key add - \
42-
&& apt-get update && apt-get install -y bazel=5.0.0 \
42+
&& apt-get update && apt-get install -y bazel=6.0.0 \
4343
&& rm /etc/apt/sources.list.d/bazel.list
4444

4545
# Set the working directory

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -356,4 +356,11 @@ We also provide access to a [deployment script](https://github.com/resilientdb/r
356356
docker exec -it myserver bash
357357
```
358358

359+
5. **NOTE: If you encounter a Connection Refused error**
360+
361+
Run the following command within the container:
362+
```shell
363+
./service/tools/kv/server_tools/start_kv_service.sh
364+
```
365+
359366
Verify the functionality of the service by performing set and get operations provided above [functions](README.md#functions).

entrypoint.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
#
24
# Licensed to the Apache Software Foundation (ASF) under one
35
# or more contributor license agreements. See the NOTICE file

0 commit comments

Comments
 (0)