From b771d6961d48268ef13e1a421ae1cc41ccaabf9e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 23 Jul 2020 20:09:43 +0000 Subject: [PATCH] Run update.sh --- postgres/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/README.md b/postgres/README.md index 98f7a11bd..49989b6ed 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -245,7 +245,7 @@ There are many ways to set PostgreSQL server configuration. For information on w - Set options directly on the run line. The entrypoint script is made so that any options passed to the docker command will be passed along to the `postgres` server daemon. From the [docs](https://www.postgresql.org/docs/current/static/app-postgres.html) we see that any option available in a `.conf` file can be set via `-c`. ```console - $ docker run -d --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword postgres -c 'shared_buffers=256MB' -c 'max_connections=200' + $ docker run -d --name some-postgres -e POSTGRES_PASSWORD=mysecretpassword postgres -c shared_buffers=256MB -c max_connections=200 ``` ## Locale Customization