From 6ac6c8effa91873b0dfe1d1a7dcaa5076a0bfc2c Mon Sep 17 00:00:00 2001 From: Anastasia Alexadrova Date: Thu, 30 Jan 2025 16:08:28 +0100 Subject: [PATCH] PKG-388 Updated the tags in Run in Docker steps --- docs/docker.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docker.md b/docs/docker.md index 82079add5..c38f4e309 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -34,14 +34,14 @@ For more information about using Docker, see the [Docker Docs :octicons-link-ext 1. Start a Percona Distribution for PostgreSQL container as follows: ```{.bash data-prompt="$"} - $ docker run --name container-name -e POSTGRES_PASSWORD=secret -d percona/percona-distribution-postgresql:-multi + $ docker run --name container-name -e POSTGRES_PASSWORD=secret -d percona/percona-distribution-postgresql:{{dockertag}} ``` Where: * `container-name` is the name you assign to your container * `POSTGRES_PASSWORD` is the superuser password - * `tag-multi` is the tag specifying the version you need. For example, `{{dockertag}}-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 :octicons-link-external-16:](https://hub.docker.com/r/percona/percona-distribution-postgresql/tags/). + * `{{dockertag}}` is the tag specifying the version you need. Docker identifies the architecture (x86_64 or ARM64) and pulls the respective image. See the [full list of tags :octicons-link-external-16:](https://hub.docker.com/r/percona/percona-distribution-postgresql/tags/). !!! tip @@ -57,7 +57,7 @@ For more information about using Docker, see the [Docker Docs :octicons-link-ext 2. Start the container: ```{.bash data-prompt="$"} - $ docker run --name container-name --env-file ./.my-pg.env -d percona/percona-distribution-postgresql:-multi + $ docker run --name container-name --env-file ./.my-pg.env -d percona/percona-distribution-postgresql:{{dockertag}} ``` 2. Connect to the container's interactive terminal: @@ -88,14 +88,14 @@ where: The following command starts another container instance and runs the `psql` command line client against your original container, allowing you to execute SQL statements against your database: ```{.bash data-prompt="$"} -$ docker run -it --network container:db-container-name --name container-name percona/percona-distribution-postgresql:-multi psql -h address -U postgres +$ docker run -it --network container:db-container-name --name container-name percona/percona-distribution-postgresql:{{dockertag}} psql -h address -U postgres ``` Where: * `db-container-name` is the name of your database container * `container-name` is the name of your container that you will use to connect to the database container using the `psql` command line client -`tag-multi` is the tag specifying the version you need. For example, `{{dockertag}}-multi`. The `multi` part of the tag serves to identify the architecture (x86_64 or ARM64) and pull the respective image. +* `{{dockertag}}` is the tag specifying the version you need. Docker identifies the architecture (x86_64 or ARM64) and pulls the respective image. * `address` is the network address where your database container is running. Use 127.0.0.1, if the database container is running on the local machine/host. ## Enable encryption