You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 30, 2024. It is now read-only.
When you do a docker build the default is --single, which seems to be a fairly common thing for people kicking the tires to do.
I fixed the problem with running alembic by conditioning that on being in development mode.
But I noticed that the default docker/.env.prototype we set SERVER_CONFIG to development unconditionally.
I've added a bit to the docker/README.rst file, but I wonder if we can make that smarter?
It was this mismatch that ended up causing the bookserver to fail to start because it tried to change the the BookServer folder thinking it was in development mode.
@bjones1
When you do a docker build the default is --single, which seems to be a fairly common thing for people kicking the tires to do.
I fixed the problem with running alembic by conditioning that on being in development mode.
But I noticed that the default
docker/.env.prototypewe set SERVER_CONFIG to development unconditionally.I've added a bit to the
docker/README.rstfile, but I wonder if we can make that smarter?It was this mismatch that ended up causing the bookserver to fail to start because it tried to change the the BookServer folder thinking it was in development mode.