How to serve static files saved in a docker volume with FastAPI?
I've created two volumes, t21db for my SQLite DB and t21images for my images, in my FastAPI app im using app.mount to mount the location for the volume to retrieve the images, here's the code - app = FastAPI() app.add_middleware(…