AgustinCB / docker-api

Docker Remote API driver for node.js. It uses the same modem than dockerode, but the interface is promisified and with a fancier syntax.
GNU General Public License v3.0
306 stars 50 forks source link

Allow non streaming call to container.stats #65

Closed williamoverton closed 3 years ago

williamoverton commented 5 years ago

Currently you can not call the container.stats function and specify that you dont want to stream the results. This simple change uses the same method used in other functions for the container lib.

API reference: https://docs.docker.com/engine/api/v1.40/#operation/ContainerStats

williamoverton commented 5 years ago

Can then be called like so: const stats = await container.stats({stream: false})