@@ -457,10 +457,11 @@ public function containerExportStream($container)
457
457
* If you want to monitor live stats events as they happen, you
458
458
* should consider using `imageStatsStream()` instead.
459
459
*
460
+ * Available as of Docker Engine API v1.19 (Docker v1.7), use `containerStatsStream()` on legacy versions
461
+ *
460
462
* @param string $container container ID
461
463
* @return PromiseInterface Promise<array> JSON stats
462
464
* @link https://docs.docker.com/engine/api/v1.40/#operation/ContainerStats
463
- * @since 0.3.0 Available as of Docker Engine API v1.19 (Docker v1.7), use `containerStatsStream()` on legacy versions
464
465
* @see self::containerStatsStream()
465
466
*/
466
467
public function containerStats ($ container )
@@ -484,10 +485,11 @@ public function containerStats($container)
484
485
* - error: once if an error occurs, will close() stream then
485
486
* - close: once the stream ends (either finished or after "error")
486
487
*
488
+ * Available as of Docker Engine API v1.17 (Docker v1.5)
489
+ *
487
490
* @param string $container container ID
488
491
* @return ReadableStreamInterface JSON stats stream
489
492
* @link https://docs.docker.com/engine/api/v1.40/#operation/ContainerStats
490
- * @since 0.3.0 Available as of Docker Engine API v1.17 (Docker v1.5)
491
493
* @see self::containerStats()
492
494
*/
493
495
public function containerStatsStream ($ container )
@@ -726,12 +728,13 @@ public function containerRemove($container, $v = false, $force = false)
726
728
* for this library. Several libraries are available, one that is known to
727
729
* work is clue/reactphp-tar (see links).
728
730
*
731
+ * Available as of Docker Engine API v1.20 (Docker v1.8)
732
+ *
729
733
* @param string $container container ID
730
734
* @param string $resource path to file or directory to archive
731
735
* @return PromiseInterface Promise<string> tar stream
732
736
* @link https://docs.docker.com/engine/api/v1.40/#operation/ContainerArchive
733
737
* @link https://github.com/clue/reactphp-tar
734
- * @since 0.3.0 Available as of Docker Engine API v1.20 (Docker v1.8)
735
738
* @see self::containerArchiveStream()
736
739
*/
737
740
public function containerArchive ($ container , $ path )
@@ -763,12 +766,13 @@ public function containerArchive($container, $path)
763
766
* The resulting stream is a well-behaving readable stream that will emit
764
767
* the normal stream events.
765
768
*
769
+ * Available as of Docker Engine API v1.20 (Docker v1.8)
770
+ *
766
771
* @param string $container container ID
767
772
* @param string $path path to file or directory to archive
768
773
* @return ReadableStreamInterface tar stream
769
774
* @link https://docs.docker.com/engine/api/v1.40/#operation/ContainerArchive
770
775
* @link https://github.com/clue/reactphp-tar
771
- * @since 0.3.0 Available as of Docker Engine API v1.20 (Docker v1.8)
772
776
* @see self::containerArchive()
773
777
*/
774
778
public function containerArchiveStream ($ container , $ path )
0 commit comments