Lemme sketch out my understanding of the overall situation for clarity (apologies if some of this is info you're already familiar with):
- The Cesium client can be pointed at many different sources of imagery and terrain data, including arbitrary user-specified endpoints that follow standard TMS-format tile file structures. So, if you have your own tilesets, you can self-host the data with an appropriate tile server tool, and point Cesium at that server.
- MBTiles is a container format to simplify the storage and transport of map tiles, as it allows storing thousands or millions of individual tile files in a single container. It's a lot easier to move around one (or a few) multi-gig MBTiles files than it is millions of individual images. There's many existing server applications that can serve up tiles from an MBTiles container, and also trivial to write your own. (Our own homegrown MBTiles server is a couple hundred lines of Python, and most of that is logic for scanning a folder for available MBTiles files that make up a dataset.)
- There's various free sources of worldwide imagery out there, but the quality is generally lower. One older list of sources is at
http://vterrain.org/Imagery/WholeEarth/ . We've used NASA's BlueMarble, which gave us zoom level 8 tiles, as well as the TrueMarble set, which gave us zoom level 9. Both of those had various visual quality issues that weren't really satisfactory, hence my recent investigation into other sources.
- There _are_ datasets from satellites like Sentinel-2 and Landsat-8, but those involve lots of striped images that have overlap, varying cloud coverage, varying lighting, etc, and they're at a single resolution rather than a tilemap hierarchy. My initial research did show sites where you can download some of those individual images, but it looked like trying to make a good worldwide composite image set to use as a source of tiles would be difficult.
- AGI, the company behind Cesium, has stood up a new service called Cesium Ion that hosts pregenerated imagery and terrain data, as well as the ability to upload and convert user-provided data. Looking at the Cesium Ion "Assets Depot" list, I do see a listing for a Sentinel-2 tileset down to zoom level 13. However, I would assume this is something that AGI has spent time and money producing themselves based on available Sentinel-2 images, and not a dataset that is available for purchase or download. Given that your requirements are for an offline dataset, I don't think this will be anything that will help you.
Mark