Skip to content

Commit

Permalink
Merge pull request #4372 from esl/move-docker-repo
Browse files Browse the repository at this point in the history
Move the docker repo to the 'erlangsolutions' organization
  • Loading branch information
JanuszJakubiec committed Sep 19, 2024
2 parents 30df723 + 168e2f2 commit 938c4d0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ It is brought to you by [Erlang Solutions](https://www.erlang-solutions.com/).

For a quick start just download:

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

## Public testing

Expand Down
4 changes: 2 additions & 2 deletions doc/getting-started/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ The following sections describe the installation process for different operating
In order to install MongooseIM using Docker, simply run the following command:

```bash
docker pull mongooseim/mongooseim
docker pull erlangsolutions/mongooseim
```

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

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

The `mongooseimctl` command is available in `/usr/lib/mongooseim/bin/mongooseimctl` in the container.
Expand Down
2 changes: 1 addition & 1 deletion doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ We offer a set of additional server-side components:
For a quick start just download:

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

See the [installation guide](getting-started/Installation.md) for more details.
Expand Down
2 changes: 1 addition & 1 deletion doc/operation-and-maintenance/Logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ Run MongooseIM daemon:

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

The next part is based on [Filebeat's docs](https://www.elastic.co/guide/en/beats/filebeat/current/running-on-docker.html).
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ extra:
provider: mike
social:
- icon: fontawesome/brands/docker
link: https://hub.docker.com/r/mongooseim/mongooseim/
link: https://hub.docker.com/r/erlangsolutions/mongooseim/
- icon: fontawesome/brands/github
link: https://github.com/esl/MongooseIM
plugins:
Expand Down
2 changes: 1 addition & 1 deletion tools/circleci-prepare-mongooseim-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fi

echo "Tag: ${DOCKERHUB_TAG}"

export IMAGE_TAG=${DOCKERHUB_REPO}/mongooseim:${DOCKERHUB_TAG}
export IMAGE_TAG=${DOCKERHUB_ORG}/${DOCKERHUB_REPO}:${DOCKERHUB_TAG}

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

0 comments on commit 938c4d0

Please sign in to comment.