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

linkinstar pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-answer.git

commit 088585e5d59182baa8b5824866f647e60babee2d
Author: LinkinStars <[email protected]>
AuthorDate: Wed Nov 29 17:20:24 2023 +0800

    docs(image): rename all docker image name to apache/answer
---
 README.md           | 2 +-
 charts/README.md    | 6 +++---
 charts/values.yaml  | 2 +-
 docker-compose.yaml | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index bb401abd..9017369a 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ To learn more about the project, visit 
[answer.apache.org](https://answer.apache
 ### Running with docker
 
 ```bash
-docker run -d -p 9080:80 -v answer-data:/data --name answer 
answerdev/answer:latest
+docker run -d -p 9080:80 -v answer-data:/data --name answer 
apache/answer:latest
 ```
 
 For more information, see 
[Installation](https://answer.apache.org/docs/installation)
diff --git a/charts/README.md b/charts/README.md
index eeb49d35..26cd6a9c 100644
--- a/charts/README.md
+++ b/charts/README.md
@@ -11,7 +11,7 @@ The following table lists the configurable parameters of the 
answer chart and th
 | Parameter | Description | Default |
 | --------- | ----------- | ------- |
 | `replicaCount`  | Number of answer replicas  | `1` |
-| `image.repository` | Image repository | `answerdev/answer` |
+| `image.repository` | Image repository | `apache/answer` |
 | `image.pullPolicy` | Image pull policy | `Always` |
 | `image.tag` | Image tag | `latest` |
 | `env` | Optional environment variables for answer | `LOG_LEVEL: INFO` |
@@ -69,7 +69,7 @@ Publish the chart to Artifacthub and add proper installation 
instructions. E.G.
 > **NOTE**: This is not currently a valid installation option.
 
 ```console
-$ helm repo add answerdev https://charts.answer.apache.org/
+$ helm repo add apache https://charts.answer.apache.org/
 $ helm repo update
-$ helm install answerdev/answer -n mynamespace
+$ helm install apache/answer -n mynamespace
 ```
\ No newline at end of file
diff --git a/charts/values.yaml b/charts/values.yaml
index 8b6fe999..c7a9c20d 100644
--- a/charts/values.yaml
+++ b/charts/values.yaml
@@ -22,7 +22,7 @@
 replicaCount: 1
 
 image:
-  repository: answerdev/answer
+  repository: apache/answer
   pullPolicy: Always
   # Overrides the image tag whose default is the chart appVersion.
   tag: "latest"
diff --git a/docker-compose.yaml b/docker-compose.yaml
index 03a670f1..58e8ea03 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -18,7 +18,7 @@
 version: "3"
 services:
   answer:
-    image: answerdev/answer
+    image: apache/answer
     ports:
       - '9080:80'
     restart: on-failure

Reply via email to