Closed JimiHFord closed 3 years ago
Trying moving your -c 'config_file=/etc/postgresql/postgresql.conf'
to the end of the commandline you are invoking.
Then way you are specifying it, the value goes to the docker run command whereas if you move it to the end (after the docker image name specification) it will be passed into the container and interrupted by the entrypoint that runs inside the container.
Hope that helps!
🤦 that did the trick, thank you!
I am trying to follow the Database Configuration section of postgres's documentation.
I tried changing the
docker run
line to this:But the
docker run
command errors with:Does anyone know how to supply a config file to the postgis container?