clue / reactphp-docker

Async, event-driven access to the Docker Engine API, built on top of ReactPHP.
https://clue.engineering/2019/introducing-reactphp-docker
MIT License
108 stars 16 forks source link

Remove deprecated `containerCopy()` and `containerCopyStream()` methods and remove deprecated HostConfig parameter from `containerStart()` #55

Closed clue closed 5 years ago

clue commented 5 years ago

Use containerArchive() and containerArchiveStream() instead.

The HostConfig was removed with Docker Engine API v1.24 (Docker v1.12) and has been deprecated since at least Docker v1.6. Pass the HostConfig to containerCreate() instead.

Builds on top of #48