You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/docker.md
+6-7
Original file line number
Diff line number
Diff line change
@@ -33,14 +33,14 @@ For more information about using Docker, see the [Docker Docs :octicons-link-ex
33
33
1. Start a Percona Distribution for PostgreSQL container as follows:
34
34
35
35
```{.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}}
37
37
```
38
38
39
39
Where:
40
40
41
41
*`container-name` is the name you assign to your container
42
42
*`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/).
44
44
45
45
46
46
!!! tip
@@ -56,7 +56,7 @@ For more information about using Docker, see the [Docker Docs :octicons-link-ex
56
56
2. Start the container:
57
57
58
58
```{.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}}
60
60
```
61
61
62
62
2. Connect to the container's interactive terminal:
@@ -87,16 +87,15 @@ where:
87
87
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:
* `db-container-name` is the name of your database container
96
96
* `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.
100
99
## Enable `pg_stat_monitor`
101
100
102
101
To enable the `pg_stat_monitor` extension after launching the container, do the following:
0 commit comments