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
While setting up cLIMS on my laptop, I can across an issue related to intializing the database.
This is because of the updates in Postgres 9.x images on Docker (it has to do with security).
It requires following lines to be added in docker-compose.yml file (either local or production depending on which we are running) environment: POSTGRES_DB: "db" POSTGRES_HOST_AUTH_METHOD: "trust"
There are updates in Postgres 9.x images available on Docker Hub, for security purposes. Now we either need to set password for specific user to get the connect or we can explicity mention that we allow all connection. We have done the later.
Git hub link for this change is : docker-library/postgres#658
While setting up cLIMS on my laptop, I can across an issue related to intializing the database.
This is because of the updates in Postgres 9.x images on Docker (it has to do with security).
It requires following lines to be added in docker-compose.yml file (either local or production depending on which we are running)
environment:
POSTGRES_DB: "db"
POSTGRES_HOST_AUTH_METHOD: "trust"
More info about this : http://support.divio.com/en/articles/3719228-database-is-uninitialized-and-superuser-password-is-not-specified
The text was updated successfully, but these errors were encountered: