Hi
I have a docker container with a asp net core 3.1 app inside (using SQLite with files stored on /home/db.sqlite)
The app is up and running without problems - with WEBSITES_ENABLE_APP_SERVICE_STORAGE==false.
If i change this setting to true then the container start fails with a timout during warmup.
there is no additional info/exception :
- not in Application Inside
- not in Console Log (i have access to docker console log) and log filters are off
the app looks like frozen!
Any idea ?
btw: with "mount storage (preview)" i have the same problems, so the issue may releated to the mounting in general.
Other observations: my app should create sqlite files on the mount: they are there .. that means basic write access is working.
But no idea why the entire app is "frozen" and not able to produce a output (trace levels at maximum).
(Frozen means: WebHostbuilder.Run has started, EF-Migrations are executed and then NO HTTPresponses (Warmup and others).....
WITHOUT mount or WEBSITES_ENABLE_APP_SERVICE_STORAGE everything is working....
any help/idea is welcome
regards
Werner