diff --git a/CodexNetDeployer/Program.cs b/CodexNetDeployer/Program.cs index 234ce78..fc4d5f6 100644 --- a/CodexNetDeployer/Program.cs +++ b/CodexNetDeployer/Program.cs @@ -1,6 +1,9 @@ using ArgsUniform; using CodexNetDeployer; using DistTestCore; +using DistTestCore.Codex; +using DistTestCore.Marketplace; +using DistTestCore.Metrics; using Newtonsoft.Json; using Configuration = CodexNetDeployer.Configuration; @@ -29,6 +32,12 @@ public class Program return; } + Console.WriteLine("Using images:" + nl + + $"\tCodex image: '{CodexContainerRecipe.DockerImage}'" + nl + + $"\tCodex Contracts image: '{CodexContractsContainerRecipe.DockerImage}'" + nl + + $"\tPrometheus image: '{PrometheusContainerRecipe.DockerImage}'" + nl + + $"\tGeth image: '{GethContainerRecipe.DockerImage}'" + nl); + if (!args.Any(a => a == "-y")) { Console.WriteLine("Does the above config look good? [y/n]");