softbricks/docker-wrapper
Composer 安装命令:
composer require softbricks/docker-wrapper
包简介
PHP wrapper for docker CLI
README 文档
README
PHP wrapper class for docker CLI (feature incomplete).
Example
The following example tries to retrieve information about the container my-container.
$docker = new Docker(); if ($docker->isInstalled()) { if ($docker->isContainerExisting('my-container')) { if (!$docker->isContainerRunning('my-container')) { $docker->start('my-container'); } $containerInfo = $docker->getContainerInfo('my-container'); // .. do something with it $docker->stop('my-container'); } }
统计信息
- 总下载量: 2.56k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2017-10-24