Problem Statement
Is it possible to use a sqlite db directly built into the main container so the entire app is entirely self contained and does not depend on other running services?
Currently it needs a separate postgres container, but using a simple sqlite file means everything can live inside a single container.
This is dramatically simplify deployment and reduce complexity. This also means you can just use a single docker command instead of a docker compose setup.
Problem Statement
Is it possible to use a sqlite db directly built into the main container so the entire app is entirely self contained and does not depend on other running services?
Currently it needs a separate postgres container, but using a simple sqlite file means everything can live inside a single container.
This is dramatically simplify deployment and reduce complexity. This also means you can just use a single docker command instead of a docker compose setup.