I’ve managed to fix this issue by performing following steps:
- Edit
containers/app.ymlto comment out all butpostgrestemplate service - Run
./launcher rebuild appthen./launcher enter app - Once in, I jump into postgres console
su - postgresthenpsql - Once in postgres, I do
\c discoursethenSELECT * FROM themesand find out the faultyAlternative Logotheme has the ID of 11. Next I delete that withDELETE FROM themes WHERE id=11then quit the console with\q - Exit the container by
exitthen uncomment out all templates incontainers/app.yamland do rebuild again