mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-13 01:21:23 +00:00
11 lines
365 B
Plaintext
11 lines
365 B
Plaintext
|
local stage = std.extVar('stage');
|
||
|
local ociRegistry = std.extVar('oci_registry');
|
||
|
local ociRegistryDocker = std.extVar('oci_registry_docker');
|
||
|
local localEnvironment = std.extVar('local_environment');
|
||
|
local localImage = if localEnvironment == "1" then true else false;
|
||
|
|
||
|
{
|
||
|
local_image: localImage,
|
||
|
docker_hub_image(name): "%s/%s" % [ociRegistryDocker, name],
|
||
|
}
|