fussybeaver / bollard

Docker daemon API in Rust
Apache License 2.0
814 stars 127 forks source link

Fixes for UpdateContainerOptions #410

Closed paul-hansen closed 2 months ago

paul-hansen commented 2 months ago

Removed kernel_memory which was deprecated in Docker's API version 1.41 and removed in 1.42.

Renamed nano_cp_us and io_maximum_i_ops in UpdateContainerOptions to nano_cpus and io_maximum_iops to match the naming in HostConfig. Closes #408

Changed the serde rename of nano_cpus from NanoCPUs to NanoCpus to match the Docker API.

fussybeaver commented 2 months ago

Thanks for the contribution