25 lines
572 B
PHP
25 lines
572 B
PHP
<?php
|
|
|
|
namespace SparkPlug\Com\Noccy\Docker;
|
|
|
|
use Spark\Commands\Command;
|
|
use SparkPlug;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
class DockerBuildCommand extends Command
|
|
{
|
|
protected function configure()
|
|
{
|
|
$this->setName("docker:build")
|
|
->setDescription("Build an image");
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
$config = read_config("docker.json");
|
|
print_r($config);
|
|
return Command::SUCCESS;
|
|
}
|
|
}
|