• 0 Posts
  • 28 Comments
Joined 11 months ago
cake
Cake day: October 17th, 2023

help-circle









  • WTF? You obviously don’t understand Docker at all.

    - Docker and Docker images provide the absolute mimimum environment which is necessary to run an application. Containers don’t have reserved resources, so only what is really used is used. A VM has a lot more overhead, as a whole computer plus complete OS are emulated.

    - There is not much to deduplicate because there is no redundant storage going on. Only the bare OS essentials plus the app are stored. There are some base OS containers (e.g. Alpine Linux) which are <10 Mbytes in size.

    - If containers themselves are “big”, you are doing Docker wrong and store data inside of a container and not externally of the container in volumes or the host filesystem. With the next container pull, that data would be lost.

    - no idea what " just not work often due to due to already deduplicated extent stuff" is supposed to mean. That does not even make sense.