Hi All.
I've just been installing a second Numbas Installation, and have encountered postgres container errors along the lines of user 'postgres' does not exist.
I believe the postgres healthcheck user should be changed from postgres to numbas_lti:
Here is a snippet from the docker-compose.yml from the numbas git repo.:
<code>
postgres:
......
healthcheck:
test: "pg_isready -U postgres"
......
</code>
I believe this should be changed to this?
<code>
healthcheck:
test: ["CMD-SHELL", "pg_isready -U numbas_lti -d numbas_lti"]
</code>