* Added --self-update to check for and download new versions of the phar * Added --only option which accepts a comma-separated list of services to pass to docker-compose pull/up * Added --updated option to only pass the updated services to docker-compose pull/up
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace NoccyLabs\FreshDocker\Configuration;
|
|
|
|
use Symfony\Component\Yaml\Yaml;
|
|
|
|
class ComposeConfiguration
|
|
{
|
|
|
|
private array $checks = [];
|
|
|
|
private array $services = [];
|
|
|
|
public function __construct(string $configfile)
|
|
{
|
|
$this->loadComposeFile($configfile);
|
|
}
|
|
|
|
private function loadComposeFile($configfile)
|
|
{
|
|
$config = Yaml::parseFile($configfile);
|
|
$services = $config['services']??[];
|
|
foreach ($services as $name=>$service) {
|
|
$image = $service['image']??null;
|
|
if ($image && !in_array($image,$this->checks)) {
|
|
$this->checks[] = $image;
|
|
}
|
|
if (!array_key_exists($image, $this->services)) {
|
|
$this->services[$image] = [];
|
|
}
|
|
$this->services[$image][] = $name;
|
|
}
|
|
}
|
|
|
|
public function getChecks(): array
|
|
{
|
|
return $this->checks;
|
|
}
|
|
|
|
public function getServicesForImages(array $images)
|
|
{
|
|
$ret = [];
|
|
foreach ($images as $ref) {
|
|
$image = (string)$ref->ref;
|
|
if (array_key_exists($image, $this->services)) {
|
|
$ret = array_merge($ret, $this->services[$image]);
|
|
}
|
|
}
|
|
return array_unique($ret);
|
|
}
|
|
} |