This commit is contained in:
2020-10-06 02:11:36 -04:00
commit ccf654ce8a
5 changed files with 394 additions and 0 deletions

63
imageConfigConfig.php Normal file
View File

@@ -0,0 +1,63 @@
<?php
namespace podmanImageManager;
use objectStructs\objectStructs;
class imageConfigConfig extends objectStructs
{
/** @var \stdClass */
public $ExposedPorts;
}
/*
*
* [config] => stdClass Object
(
[ExposedPorts] => stdClass Object
(
[443/tcp] => stdClass Object
(
)
[80/tcp] => stdClass Object
(
)
)
[Env] => Array
(
[0] => domain=example.com
[1] => domainAliases=example.com-iniapp.generic.host
)
[Entrypoint] => Array
(
[0] => /bin/sh
[1] => -c
[2] => /usr/local/hosting/container/start.sh
)
[Cmd] => Array
(
[0] => /usr/local/hosting/container/start.sh
)
[Volumes] => stdClass Object
(
[/var/www/vhosts/example.com] => stdClass Object
(
)
)
[Labels] => stdClass Object
(
[io.buildah.version] => 1.11.6
)
)
*/