Debug School

Sandeep Joshi
Sandeep Joshi

Posted on

Update configuration of one or more containers

The docker update command dynamically updates container configuration. You can use this command to prevent containers from consuming too many resources from their Docker host. With a single command, you can place limits on a single container or on many. To specify more than one container, provide space-separated list of container names or IDs.

docker update --cpu-shares 500 rtyed7571666

Top comments (0)