Skip to content

Commit 9239840

Browse files
committed
Update docker with first round of feedback
1 parent 3bc90ed commit 9239840

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

docs/docker/docker.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ Where:
2424
* `POSTGRES_PASSWORD` is the superuser password
2525
* `{{dockertag}}` is the tag specifying the version you need. Docker identifies the architecture (amd64 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/).
2626

27-
!!! note
28-
29-
Some extensions require server startup configuration and must be loaded via `shared_preload_libraries` before PostgreSQL starts.
30-
3127
!!! tip
3228

3329
You can secure the password by exporting it to the environment file and using that to start the container.
@@ -46,7 +42,7 @@ Where:
4642

4743
## 2. Enable extensions
4844

49-
Extensions must be explicitly loaded when starting the container using the `shared_preload_libraries` parameter, then enabled per database:
45+
Some extensions require server startup configuration and must be loaded via `shared_preload_libraries` before PostgreSQL starts. You need to explicitly load the extensions when starting the container using the `shared_preload_libraries` parameter, then enabled per database:
5046

5147
1. Start the container with the extensions you want to load:
5248

@@ -57,7 +53,7 @@ Extensions must be explicitly loaded when starting the container using the `shar
5753
2. Connect to the container's interactive terminal:
5854
5955
```{.bash data-prompt="$"}
60-
docker exec -it container-name bash
56+
docker exec -it container-name psql -U postgres
6157
```
6258
6359
The `container-name` is the name of the container that you started in the previous step.

0 commit comments

Comments
 (0)