I noticed that the docker compose file is broken.
There are two things broken. One is that it uses bsddb as database by default which is not supported. That can be fixed by setting GRAMPSWEB_DB_BACKEND: sqlite.
Secondly when grampsweb_celery and grampsweb are starting at the same time, the database migration might fail (because both migrating the DB at the same time). That can be fixed by making grampsweb_celery depending on grampsweb.
I noticed that the docker compose file is broken.
There are two things broken. One is that it uses
bsddbas database by default which is not supported. That can be fixed by settingGRAMPSWEB_DB_BACKEND: sqlite.Secondly when
grampsweb_celeryandgrampswebare starting at the same time, the database migration might fail (because both migrating the DB at the same time). That can be fixed by makinggrampsweb_celerydepending ongrampsweb.