I’ve managed to fix this issue by performing following steps:
- Edit
containers/app.yml
to comment out all butpostgres
template service - Run
./launcher rebuild app
then./launcher enter app
- Once in, I jump into postgres console
su - postgres
thenpsql
- Once in postgres, I do
\c discourse
thenSELECT * FROM themes
and find out the faultyAlternative Logo
theme has the ID of 11. Next I delete that withDELETE FROM themes WHERE id=11
then quit the console with\q
- Exit the container by
exit
then uncomment out all templates incontainers/app.yaml
and do rebuild again