In your Docker installation documentation, you state:
Following environment variables can be used to change container settings:
So I created the container changing the POSTGRES_PASSWORD variable, to something secure, because of course the database being secured by the same name as the user is not secure at all. Well, it doesn't work.
I've been here for hours and hours. If I don't change this variable on creation, all works, but if I do, it crashes. I tried changing the application.properties and app.properties variables located at /var/lib/tomcat, and also changing the variables located directly in the ROOT folder. Nothing changes and it is destroying me. Also tried directly changing the password of the user "axelor" directly on the psql cli.
Help please!
UPDATE:
Seems that the ENV variable is only working to change the password in PSQL, because if I change the password back to axelor it works. So this variable is not changing the information in the system files.
In your Docker installation documentation, you state:
So I created the container changing the
POSTGRES_PASSWORDvariable, to something secure, because of course the database being secured by the same name as the user is not secure at all. Well, it doesn't work.I've been here for hours and hours. If I don't change this variable on creation, all works, but if I do, it crashes. I tried changing the
application.propertiesandapp.propertiesvariables located at/var/lib/tomcat, and also changing the variables located directly in the ROOT folder. Nothing changes and it is destroying me. Also tried directly changing the password of the user "axelor" directly on the psql cli.Help please!
UPDATE:
Seems that the ENV variable is only working to change the password in PSQL, because if I change the password back to axelor it works. So this variable is not changing the information in the system files.