Skip to content

Commit 938c4d0

Browse files
Merge pull request #4372 from esl/move-docker-repo
Move the docker repo to the 'erlangsolutions' organization
2 parents 30df723 + 168e2f2 commit 938c4d0

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ It is brought to you by [Erlang Solutions](https://www.erlang-solutions.com/).
4343

4444
For a quick start just download:
4545

46-
* The [pre-built packages](https://www.erlang-solutions.com/resources/download.html) that suit your platform (Ubuntu, Debian, CentOS compatible: AlmaLinux and Rocky Linux)
47-
* The [Docker image](https://hub.docker.com/r/mongooseim/mongooseim/): [https://hub.docker.com/r/mongooseim/mongooseim/](https://hub.docker.com/r/mongooseim/mongooseim/) (source code repository: [https://github.com/esl/mongooseim-docker](https://github.com/esl/mongooseim-docker))
46+
* The [Docker image](https://hub.docker.com/r/erlangsolutions/mongooseim/) ([source code repository](https://github.com/esl/mongooseim-docker))
4847
* The [Helm chart](https://artifacthub.io/packages/helm/mongoose/mongooseim) ([source code repository](https://github.com/esl/MongooseHelm))
48+
* The [pre-built packages](https://www.erlang-solutions.com/resources/download.html) that suit your platform (Ubuntu, Debian, CentOS compatible: AlmaLinux and Rocky Linux)
4949

5050
## Public testing
5151

Diff for: doc/getting-started/Installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ The following sections describe the installation process for different operating
4141
In order to install MongooseIM using Docker, simply run the following command:
4242

4343
```bash
44-
docker pull mongooseim/mongooseim
44+
docker pull erlangsolutions/mongooseim
4545
```
4646

4747
This will download the latest release.
4848
You can use tags to download an exact version.
4949

5050
We build Docker images for every release marked with a git tag, as well as for every Pull Request.
51-
You can see all of them on [DockerHub](https://hub.docker.com/r/mongooseim/mongooseim).
51+
You can see all of them on [DockerHub](https://hub.docker.com/r/erlangsolutions/mongooseim).
5252
In order to learn more about how the images are built, please visit the [source code repository](https://github.com/esl/mongooseim-docker).
5353

5454
The `mongooseimctl` command is available in `/usr/lib/mongooseim/bin/mongooseimctl` in the container.

Diff for: doc/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ We offer a set of additional server-side components:
5959
For a quick start just download:
6060

6161
* The [pre-built packages](https://www.erlang-solutions.com/resources/download.html) that suit your platform (Ubuntu, Debian, CentOS compatible: AlmaLinux and Rocky Linux)
62-
* The [Docker image](https://hub.docker.com/r/mongooseim/mongooseim/) ([source code repository](https://github.com/esl/mongooseim-docker))
62+
* The [Docker image](https://hub.docker.com/r/erlangsolutions/mongooseim/) ([source code repository](https://github.com/esl/mongooseim-docker))
6363
* The [Helm chart](https://artifacthub.io/packages/helm/mongoose/mongooseim) ([source code repository](https://github.com/esl/MongooseHelm))
6464

6565
See the [installation guide](getting-started/Installation.md) for more details.

Diff for: doc/operation-and-maintenance/Logging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ Run MongooseIM daemon:
260260

261261
```bash
262262
docker run -d -t -h mongooseim -v mongooseim-logs:/usr/lib/mongooseim/log \
263-
--network logging --name mongooseim -p 5222:5222 mongooseim/mongooseim:latest
263+
--network logging --name mongooseim -p 5222:5222 erlangsolutions/mongooseim:latest
264264
```
265265

266266
The next part is based on [Filebeat's docs](https://www.elastic.co/guide/en/beats/filebeat/current/running-on-docker.html).

Diff for: mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extra:
3232
provider: mike
3333
social:
3434
- icon: fontawesome/brands/docker
35-
link: https://hub.docker.com/r/mongooseim/mongooseim/
35+
link: https://hub.docker.com/r/erlangsolutions/mongooseim/
3636
- icon: fontawesome/brands/github
3737
link: https://github.com/esl/MongooseIM
3838
plugins:

Diff for: tools/circleci-prepare-mongooseim-docker.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fi
2323

2424
echo "Tag: ${DOCKERHUB_TAG}"
2525

26-
export IMAGE_TAG=${DOCKERHUB_REPO}/mongooseim:${DOCKERHUB_TAG}
26+
export IMAGE_TAG=${DOCKERHUB_ORG}/${DOCKERHUB_REPO}:${DOCKERHUB_TAG}
2727

2828
if [ -d mongooseim-docker ]; then
2929
# We already have mongooseim-docker, just fetch the required version

0 commit comments

Comments
 (0)