From 03b5950d718a699c579cecd880c6a0fc67ac37c7 Mon Sep 17 00:00:00 2001 From: LinkinStars Date: Wed, 29 Nov 2023 17:20:24 +0800 Subject: [PATCH] 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 bb401abd9..9017369a5 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 eeb49d353..26cd6a9cf 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 8b6fe9998..c7a9c20d8 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 03a670f1b..58e8ea036 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