Skip to content

Commit 03b5950

Browse files
committed
docs(image): rename all docker image name to apache/answer
1 parent 7aa16f2 commit 03b5950

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To learn more about the project, visit [answer.apache.org](https://answer.apache
2323
### Running with docker
2424

2525
```bash
26-
docker run -d -p 9080:80 -v answer-data:/data --name answer answerdev/answer:latest
26+
docker run -d -p 9080:80 -v answer-data:/data --name answer apache/answer:latest
2727
```
2828

2929
For more information, see [Installation](https://answer.apache.org/docs/installation)

charts/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The following table lists the configurable parameters of the answer chart and th
1111
| Parameter | Description | Default |
1212
| --------- | ----------- | ------- |
1313
| `replicaCount` | Number of answer replicas | `1` |
14-
| `image.repository` | Image repository | `answerdev/answer` |
14+
| `image.repository` | Image repository | `apache/answer` |
1515
| `image.pullPolicy` | Image pull policy | `Always` |
1616
| `image.tag` | Image tag | `latest` |
1717
| `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.
6969
> **NOTE**: This is not currently a valid installation option.
7070
7171
```console
72-
$ helm repo add answerdev https://charts.answer.apache.org/
72+
$ helm repo add apache https://charts.answer.apache.org/
7373
$ helm repo update
74-
$ helm install answerdev/answer -n mynamespace
74+
$ helm install apache/answer -n mynamespace
7575
```

charts/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
replicaCount: 1
2323

2424
image:
25-
repository: answerdev/answer
25+
repository: apache/answer
2626
pullPolicy: Always
2727
# Overrides the image tag whose default is the chart appVersion.
2828
tag: "latest"

docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
version: "3"
1919
services:
2020
answer:
21-
image: answerdev/answer
21+
image: apache/answer
2222
ports:
2323
- '9080:80'
2424
restart: on-failure

0 commit comments

Comments
 (0)