Is it possible to use the sqlite database in the docker configuration, instead of postgres? It should be more lightweight, no?
I've tried by:
removing 'db' from the .dockerignore
removing the 'from eva.deploy_settings import *' line in eva/settings.py
And then docker-compose build + run manage.py migrate which doesn't error out, seems to do migrations, but then says the 'db.sqlite3' file is empty, and that no migrations actually happened.
Hi,
Is it possible to use the sqlite database in the docker configuration, instead of postgres? It should be more lightweight, no?
I've tried by:
And then
docker-compose build
+run manage.py migrate
which doesn't error out, seems to do migrations, but then says the 'db.sqlite3' file is empty, and that no migrations actually happened.What could be the issue?