Skip to content

Commit 1d95165

Browse files
authored
PKG-388 Updated the tags in Run in Docker steps (#732)
1 parent 5fbab82 commit 1d95165

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

docs/docker.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ For more information about using Docker, see the [Docker Docs :octicons-link-ex
3333
1. Start a Percona Distribution for PostgreSQL container as follows:
3434

3535
```{.bash data-prompt="$"}
36-
$ docker run --name container-name -e POSTGRES_PASSWORD=secret -d percona/percona-distribution-postgresql:<tag>-multi
36+
$ docker run --name container-name -e POSTGRES_PASSWORD=secret -d percona/percona-distribution-postgresql:{{dockertag}}
3737
```
3838

3939
Where:
4040

4141
* `container-name` is the name you assign to your container
4242
* `POSTGRES_PASSWORD` is the superuser password
43-
* `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/).
43+
* `{{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/).
4444

4545

4646
!!! tip
@@ -56,7 +56,7 @@ For more information about using Docker, see the [Docker Docs :octicons-link-ex
5656
2. Start the container:
5757

5858
```{.bash data-prompt="$"}
59-
$ docker run --name container-name --env-file ./.my-pg.env -d percona/percona-distribution-postgresql:<tag>-multi
59+
$ docker run --name container-name --env-file ./.my-pg.env -d percona/percona-distribution-postgresql:{{dockertag}}
6060
```
6161

6262
2. Connect to the container's interactive terminal:
@@ -87,16 +87,15 @@ where:
8787
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:
8888
8989
```{.bash data-prompt="$"}
90-
$ docker run -it --network container:db-container-name --name container-name percona/percona-distribution-postgresql:<tag>-multi psql -h address -U postgres
90+
$ docker run -it --network container:db-container-name --name container-name percona/percona-distribution-postgresql:{{dockertag}} psql -h address -U postgres
9191
```
9292
9393
Where:
9494
9595
* `db-container-name` is the name of your database container
9696
* `container-name` is the name of your container that you will use to connect to the database container using the `psql` command line client
97-
* `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.
98-
* `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.
99-
97+
* `{{dockertag}}` is the tag specifying the version you need. Docker identifies the architecture (x86_64 or ARM64) and pulls the respective image.
98+
* `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.
10099
## Enable `pg_stat_monitor`
101100
102101
To enable the `pg_stat_monitor` extension after launching the container, do the following:

0 commit comments

Comments
 (0)