Skip to content

Commit

Permalink
PKG-389 Updated Docker tags in Docker instructions (#971)
Browse files Browse the repository at this point in the history
modified:   docs/install/docker.md
  • Loading branch information
nastena1606 authored Feb 19, 2025
1 parent 53d2aed commit eaa0841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For more information about using Docker, see the [Docker Docs](https://docs.dock
To run the latest Percona Server for MongoDB 8.0 in a Docker container, run the following command as the root user or via `sudo`:

```{.bash data-prompt="$"}
$ docker run -d --name psmdb -p 27017:27017 --restart always percona/percona-server-mongodb:<TAG>-multi
$ docker run -d --name psmdb -p 27017:27017 --restart always percona/percona-server-mongodb:<TAG>
```

The command does the following:
Expand All @@ -41,7 +41,7 @@ and restart it if the container exits.

* `percona/percona-server-mongodb` is the name of the image to derive the container from.

* `<TAG>-multi` is the tag specifying the version you need. For example, `{{release}}-multi`. The `multi` part of the tag serves to identify the architecture (x86_64 or ARM64) and pull the respective image. [See the full list of tags](https://hub.docker.com/r/percona/percona-server-mongodb/tags).
* `<TAG>` is the tag specifying the version you need. For example, `{{release}}`. Docker automatically identifies the architecture (x86_64 or ARM64) and pulls the respective image. [See the full list of tags](https://hub.docker.com/r/percona/percona-server-mongodb/tags).

## Connecting from another Docker container

Expand Down

0 comments on commit eaa0841

Please sign in to comment.