Reputation: 3033
I made docker-machine like below
docker-machine create --driver virtualbox --virtualbox-cpu-count 2 --virtualbox-memory 2048 default
As I known, docker container is on this docker-machine host. I made some container on this docker-machine host, and somehow seems docker container use more resource than setting resource on docker-machine (actullay cpu).
Upvotes: 0
Views: 816
Reputation: 254916
In the docker stats
every container gets 100% added to the CPU%
column for every core allocated.
It means couple of things:
Upvotes: 2