//src on host, dest in container func ImportData(cmd *cobra.Command, args []string) { IfExit(ArgCheck(3, "eq", cmd, args)) do.Name = args[0] do.Source = args[1] do.Destination = args[2] IfExit(data.ImportData(do)) }
func ImportKey(do *definitions.Do) error { do.Name = "keys" do.Operations.ContainerNumber = 1 if err := srv.EnsureRunning(do); err != nil { return err } do.Operations.Interactive = false dir := path.Join(ErisContainerRoot, "keys", "data", do.Address) do.Operations.Args = []string{"mkdir", dir} //need to mkdir for import if err := srv.ExecService(do); err != nil { return err } //src on host if do.Source == "" { do.Source = filepath.Join(KeysPath, "data", do.Address, do.Address) } //dest in container do.Destination = dir if err := data.ImportData(do); err != nil { return err } return nil }
func ImportData(cmd *cobra.Command, args []string) { IfExit(ArgCheck(1, "ge", cmd, args)) do.Name = args[0] setDefaultDir() IfExit(data.ImportData(do)) }
func DefineAppActionService(do *definitions.Do, app *definitions.Contracts) error { var cmd string switch do.Name { case "test": cmd = app.AppType.TestCmd case "deploy": cmd = app.AppType.DeployCmd default: return fmt.Errorf("I do not know how to perform that task (%s)\nPlease check what you can do with contracts by typing [eris contracts].\n", do.Name) } // if manual, set task if app.AppType.Name == "manual" { switch do.Name { case "test": cmd = app.TestTask case "deploy": cmd = app.DeployTask } } // task flag override if do.Task != "" { app.AppType = definitions.GulpApp() cmd = do.Task } if cmd == "nil" { return fmt.Errorf("I cannot perform that task against that app type.\n") } // build service that will run do.Service.Name = app.Name + "_tmp_" + do.Name do.Service.Image = app.AppType.BaseImage do.Service.AutoData = true do.Service.EntryPoint = app.AppType.EntryPoint do.Service.Command = cmd if do.Path != pwd { do.Service.WorkDir = do.Path // do.Path is actually where the workdir inside the container goes } else { do.Service.WorkDir = filepath.Join(common.ErisContainerRoot, "apps", app.Name) } do.Service.User = "******" srv := definitions.BlankServiceDefinition() srv.Service = do.Service srv.Operations = do.Operations loaders.ServiceFinalizeLoad(srv) do.Service = srv.Service do.Operations = srv.Operations do.Operations.Follow = true linkAppToChain(do, app) if app.AppType.Name == "epm" { prepareEpmAction(do, app) } // make data container and import do.Path to do.Path (if exists) doData := definitions.NowDo() doData.Name = do.Service.Name doData.Operations = do.Operations if do.Path != pwd { doData.Destination = do.Path } else { doData.Destination = common.ErisContainerRoot } doData.Source = filepath.Join(common.DataContainersPath, doData.Name) var loca string if do.Path != pwd { loca = filepath.Join(common.DataContainersPath, doData.Name, do.Path) } else { loca = filepath.Join(common.DataContainersPath, doData.Name, "apps", app.Name) } log.WithFields(log.Fields{ "path": do.Path, "location": loca, }).Debug("Creating app data container") common.Copy(do.Path, loca) if err := data.ImportData(doData); err != nil { return err } do.Operations.DataContainerName = util.DataContainersName(doData.Name, doData.Operations.ContainerNumber) log.Debug("App action built") return nil }
// the main function for setting up a chain container // handles both "new" and "fetch" - most of the differentiating logic is in the container func setupChain(do *definitions.Do, cmd string) (err error) { // XXX: if do.Name is unique, we can safely assume (and we probably should) that do.Operations.ContainerNumber = 1 // do.Name is mandatory if do.Name == "" { return fmt.Errorf("setupChain requires a chainame") } containerName := util.ChainContainersName(do.Name, do.Operations.ContainerNumber) if do.ChainID == "" { do.ChainID = do.Name } //if given path does not exist, see if its a reference to something in ~/.eris/chains/chainName if do.Path != "" { src, err := os.Stat(do.Path) if err != nil || !src.IsDir() { logger.Infof("Path (%s) does not exist or is not a directory, trying $HOME/.eris/chains/%s\n", do.Path, do.Path) do.Path, err = util.ChainsPathChecker(do.Path) if err != nil { return err } } } else if do.GenesisFile == "" && do.CSV == "" && len(do.ConfigOpts) == 0 { // NOTE: this expects you to have ~/.eris/chains/default/ (ie. to have run `eris init`) do.Path, err = util.ChainsPathChecker("default") if err != nil { return err } } // ensure/create data container if !data.IsKnown(do.Name) { ops := loaders.LoadDataDefinition(do.Name, do.Operations.ContainerNumber) if err := perform.DockerCreateData(ops); err != nil { return fmt.Errorf("Error creating data container =>\t%v", err) } } else { logger.Debugln("Data container already exists for", do.Name) } logger.Debugf("Chain's Data Contain Built =>\t%s\n", do.Name) // if something goes wrong, cleanup defer func() { if err != nil { logger.Infof("Error on setupChain =>\t\t%v\n", err) logger.Infoln("Cleaning up...") if err2 := RmChain(do); err2 != nil { // maybe be less dramatic err = fmt.Errorf("Tragic! Our marmots encountered an error during setupChain for %s.\nThey also failed to cleanup after themselves (remove containers) due to another error.\nFirst error =>\t\t\t%v\nCleanup error =>\t\t%v\n", containerName, err, err2) } } }() // copy do.Path, do.GenesisFile, do.ConfigFile, do.Priv, do.CSV into container containerDst := path.Join("chains", do.Name) // path in container dst := path.Join(DataContainersPath, do.Name, containerDst) // path on host // TODO: deal with do.Operations.ContainerNumbers ....! // we probably need to update Import logger.Debugf("Container destination =>\t%s\n", containerDst) logger.Debugf("Local destination =>\t\t%s\n", dst) if err = os.MkdirAll(dst, 0700); err != nil { return fmt.Errorf("Error making data directory: %v", err) } // we accept two csvs: one for validators, one for accounts // if there's only one, its for validators and accounts var csvFiles []string var csvPaths string if do.CSV != "" { csvFiles = strings.Split(do.CSV, ",") if len(csvFiles) > 1 { csvPath1 := fmt.Sprintf("%s/%s/%s/%s", ErisContainerRoot, "chains", do.ChainID, "validators.csv") csvPath2 := fmt.Sprintf("%s/%s/%s/%s", ErisContainerRoot, "chains", do.ChainID, "accounts.csv") csvPaths = fmt.Sprintf("%s,%s", csvPath1, csvPath2) } else { csvPaths = fmt.Sprintf("%s/%s/%s/%s", ErisContainerRoot, "chains", do.ChainID, "genesis.csv") } } filesToCopy := []stringPair{ {do.Path, ""}, {do.GenesisFile, "genesis.json"}, {do.ConfigFile, "config.toml"}, {do.Priv, "priv_validator.json"}, } if len(csvFiles) == 1 { filesToCopy = append(filesToCopy, stringPair{csvFiles[0], "genesis.csv"}) } else if len(csvFiles) > 1 { filesToCopy = append(filesToCopy, stringPair{csvFiles[0], "validators.csv"}) filesToCopy = append(filesToCopy, stringPair{csvFiles[1], "accounts.csv"}) } logger.Infof("Copying chain files into the correct location.\n") if err := copyFiles(dst, filesToCopy); err != nil { return err } // copy from host to container logger.Debugf("Copying Files into DataCont =>\t%s:%s\n", dst, containerDst) importDo := definitions.NowDo() importDo.Name = do.Name importDo.Operations = do.Operations importDo.Destination = ErisContainerRoot importDo.Source = filepath.Join(DataContainersPath, do.Name) if err = data.ImportData(importDo); err != nil { return err } chain := loaders.MockChainDefinition(do.Name, do.ChainID, false, do.Operations.ContainerNumber) //set maintainer info chain.Maintainer.Name, chain.Maintainer.Email, err = config.GitConfigUser() if err != nil { logger.Debugf(err.Error()) } // write the chain definition file ... fileName := filepath.Join(ChainsPath, do.Name) + ".toml" if _, err = os.Stat(fileName); err != nil { if err = WriteChainDefinitionFile(chain, fileName); err != nil { return fmt.Errorf("error writing chain definition to file: %v", err) } } chain, err = loaders.LoadChainDefinition(do.Name, false, do.Operations.ContainerNumber) if err != nil { return err } logger.Debugf("Chain Loaded. Image =>\t\t%v\n", chain.Service.Image) chain.Operations.PublishAllPorts = do.Operations.PublishAllPorts // TODO: remove this and marshall into struct from cli directly // cmd should be "new" or "install" chain.Service.Command = cmd // write the list of <key>:<value> config options as flags buf := new(bytes.Buffer) for _, cv := range do.ConfigOpts { spl := strings.Split(cv, "=") if len(spl) != 2 { return fmt.Errorf("Config options should be <key>=<value> pairs. Got %s", cv) } buf.WriteString(fmt.Sprintf(" --%s=%s", spl[0], spl[1])) } configOpts := buf.String() // set chainid and other vars envVars := []string{ fmt.Sprintf("CHAIN_ID=%s", do.ChainID), fmt.Sprintf("CONTAINER_NAME=%s", containerName), fmt.Sprintf("CSV=%v", csvPaths), // for mintgen fmt.Sprintf("CONFIG_OPTS=%s", configOpts), // for config.toml fmt.Sprintf("NODE_ADDR=%s", do.Gateway), // etcb host fmt.Sprintf("DOCKER_FIX=%s", " "), // https://github.com/docker/docker/issues/14203 } envVars = append(envVars, do.Env...) if do.Run { // run erisdb instead of tendermint envVars = append(envVars, "ERISDB_API=true") } logger.Debugf("Set env vars from setupChain =>\t%v\n", envVars) chain.Service.Environment = append(chain.Service.Environment, envVars...) logger.Debugf("Set links from setupChain =>\t%v\n", do.Links) chain.Service.Links = append(chain.Service.Links, do.Links...) // TODO: if do.N > 1 ... chain.Operations.DataContainerName = util.DataContainersName(do.Name, do.Operations.ContainerNumber) if err := bootDependencies(chain, do); err != nil { return err } logger.Debugf("Starting chain via Docker =>\t%s\n", chain.Service.Name) logger.Debugf("\twith Image =>\t\t%s\n", chain.Service.Image) err = perform.DockerRunService(chain.Service, chain.Operations) // this err is caught in the defer above return }
// the main function for setting up a chain container // handles both "new" and "fetch" - most of the differentiating logic is in the container func setupChain(do *definitions.Do, cmd string) (err error) { // XXX: if do.Name is unique, we can safely assume (and we probably should) that do.Operations.ContainerNumber = 1 // do.Name is mandatory if do.Name == "" { return fmt.Errorf("setupChain requires a chainame") } containerName := util.ChainContainersName(do.Name, do.Operations.ContainerNumber) if do.ChainID == "" { do.ChainID = do.Name } // do.Run containers and exit (creates data container) if !data.IsKnown(containerName) { if err := perform.DockerCreateDataContainer(do.Name, do.Operations.ContainerNumber); err != nil { return fmt.Errorf("Error creating data containr =>\t%v", err) } } logger.Debugf("Chain's Data Contain Built =>\t%s\n", do.Name) // if something goes wrong, cleanup defer func() { if err != nil { logger.Infof("Error on setupChain =>\t\t%v\n", err) logger.Infoln("Cleaning up...") if err2 := RmChain(do); err2 != nil { err = fmt.Errorf("Tragic! Our marmots encountered an error during setupChain for %s.\nThey also failed to cleanup after themselves (remove containers) due to another error.\nFirst error =>\t\t\t%v\nCleanup error =>\t\t%v\n", containerName, err, err2) } } }() // copy do.Path, do.GenesisFile, config into container containerDst := path.Join("blockchains", do.Name) // path in container dst := path.Join(DataContainersPath, do.Name, containerDst) // path on host // TODO: deal with do.Operations.ContainerNumbers ....! // we probably need to update Import if err = os.MkdirAll(dst, 0700); err != nil { return fmt.Errorf("Error making data directory: %v", err) } if do.Path != "" { if err = Copy(do.Path, dst); err != nil { return err } } if do.GenesisFile != "" { if err = Copy(do.GenesisFile, path.Join(dst, "genesis.json")); err != nil { return err } } else { // TODO: do.Run mintgen and open the do.GenesisFile in editor } if do.ConfigFile != "" { if err = Copy(do.ConfigFile, path.Join(dst, "config."+path.Ext(do.ConfigFile))); err != nil { return err } } // copy from host to container logger.Debugf("Copying Files into DataCont =>\t%s:%s\n", dst, containerDst) importDo := definitions.NowDo() importDo.Name = do.Name importDo.Operations = do.Operations if err = data.ImportData(importDo); err != nil { return err } chain := loaders.MockChainDefinition(do.Name, do.ChainID, false, do.Operations.ContainerNumber) //get maintainer info uName, err := gitconfig.Username() if err != nil { logger.Debugf("Could not find git user.name, setting chain.Maintainer.Name = \"\"") uName = "" } email, err := gitconfig.Email() if err != nil { logger.Debugf("Could not find git user.email, setting chain.Maintainer.Email = \"\"") email = "" } chain.Maintainer.Name = uName chain.Maintainer.Email = email // write the chain definition file ... fileName := filepath.Join(BlockchainsPath, do.Name) + ".toml" if _, err = os.Stat(fileName); err != nil { if err = WriteChainDefinitionFile(chain, fileName); err != nil { return fmt.Errorf("error writing chain definition to file: %v", err) } } chain, err = loaders.LoadChainDefinition(do.Name, false, do.Operations.ContainerNumber) if err != nil { return err } logger.Debugf("Chain Loaded. Image =>\t\t%v\n", chain.Service.Image) chain.Operations.PublishAllPorts = do.Operations.PublishAllPorts // TODO: remove this and marshall into struct from cli directly // cmd should be "new" or "install" chain.Service.Command = cmd // do we need to create our own do.GenesisFile? var genGen bool if do.GenesisFile == "" { genGen = true } // set chainid and other vars envVars := []string{ "CHAIN_ID=" + do.ChainID, "CONTAINER_NAME=" + containerName, fmt.Sprintf("RUN=%v", do.Run), fmt.Sprintf("GENERATE_GENESIS=%v", genGen), } logger.Debugf("Set env vars from setupChain =>\t%v\n", envVars) for _, eV := range envVars { chain.Service.Environment = append(chain.Service.Environment, eV) } // TODO mint vs. erisdb (in terms of rpc) chain.Operations.DataContainerName = util.DataContainersName(do.Name, do.Operations.ContainerNumber) if os.Getenv("TEST_IN_CIRCLE") != "true" { chain.Operations.Remove = true } logger.Debugf("Starting chain via Docker =>\t%s\n", chain.Service.Name) logger.Debugf("\twith Image =>\t\t%s\n", chain.Service.Image) err = perform.DockerRun(chain.Service, chain.Operations) // this err is caught in the defer above return }
func DefineDappActionService(do *definitions.Do, dapp *definitions.Contracts) error { var cmd string switch do.Name { case "test": cmd = dapp.DappType.TestCmd case "deploy": cmd = dapp.DappType.DeployCmd default: return fmt.Errorf("I do not know how to perform that task (%s)\nPlease check what you can do with contracts by typing [eris contracts].\n", do.Name) } // if manual, set task if dapp.DappType.Name == "manual" { switch do.Name { case "test": cmd = dapp.TestTask case "deploy": cmd = dapp.DeployTask } } // task flag override if do.Task != "" { dapp.DappType = definitions.GulpDapp() cmd = do.Task } if cmd == "nil" { return fmt.Errorf("I cannot perform that task against that dapp type.\n") } // dapp-specific tests if dapp.DappType.Name == "pyepm" { if do.ConfigFile == "" { return fmt.Errorf("The pyepm dapp type requires a --yaml flag for the package definition you would like to deploy.\n") } else { cmd = do.ConfigFile } } // build service that will run do.Service.Name = dapp.Name + "_tmp_" + do.Name do.Service.Image = dapp.DappType.BaseImage do.Service.AutoData = true do.Service.EntryPoint = dapp.DappType.EntryPoint do.Service.Command = cmd if do.NewName != "" { do.Service.WorkDir = do.NewName // do.NewName is actually where the workdir inside the container goes } do.Service.User = "******" srv := definitions.BlankServiceDefinition() srv.Service = do.Service srv.Operations = do.Operations loaders.ServiceFinalizeLoad(srv) do.Service = srv.Service do.Operations = srv.Operations do.Operations.Remove = true linkDappToChain(do, dapp) // make data container and import do.Path to do.NewName (if exists) doData := definitions.NowDo() doData.Name = do.Service.Name doData.Operations = do.Operations if do.NewName != "" { doData.Path = do.NewName } loca := path.Join(common.DataContainersPath, doData.Name) logger.Debugf("Creating Dapp Data Cont =>\t%s:%s\n", do.Path, loca) common.Copy(do.Path, loca) data.ImportData(doData) do.Operations.DataContainerName = util.DataContainersName(doData.Name, doData.Operations.ContainerNumber) logger.Debugf("DApp Action Built.\n") return nil }
// the main function for setting up a chain container // handles both "new" and "fetch" - most of the differentiating logic is in the container func setupChain(do *definitions.Do, cmd string) (err error) { // XXX: if do.Name is unique, we can safely assume (and we probably should) that do.Operations.ContainerNumber = 1 // do.Name is mandatory if do.Name == "" { return fmt.Errorf("setupChain requires a chainame") } containerName := util.ChainContainersName(do.Name, do.Operations.ContainerNumber) if do.ChainID == "" { do.ChainID = do.Name } // ensure/create data container if !data.IsKnown(containerName) { if err := perform.DockerCreateDataContainer(do.Name, do.Operations.ContainerNumber); err != nil { return fmt.Errorf("Error creating data containr =>\t%v", err) } } else { logger.Debugln("Data container already exists for", do.Name) } logger.Debugf("Chain's Data Contain Built =>\t%s\n", do.Name) // if something goes wrong, cleanup defer func() { if err != nil { logger.Infof("Error on setupChain =>\t\t%v\n", err) logger.Infoln("Cleaning up...") if err2 := RmChain(do); err2 != nil { // maybe be less dramatic err = fmt.Errorf("Tragic! Our marmots encountered an error during setupChain for %s.\nThey also failed to cleanup after themselves (remove containers) due to another error.\nFirst error =>\t\t\t%v\nCleanup error =>\t\t%v\n", containerName, err, err2) } } }() // copy do.Path, do.GenesisFile, do.ConfigFile, do.Priv, do.CSV into container containerDst := path.Join("blockchains", do.Name) // path in container dst := path.Join(DataContainersPath, do.Name, containerDst) // path on host // TODO: deal with do.Operations.ContainerNumbers ....! // we probably need to update Import logger.Debugln("container destination:", containerDst) logger.Debugln("local destination:", dst) if err = os.MkdirAll(dst, 0700); err != nil { return fmt.Errorf("Error making data directory: %v", err) } var csvFile, csvPath string if do.CSV != "" { csvFile = "genesis.csv" csvPath = fmt.Sprintf("/home/eris/.eris/blockchains/%s/%s", do.ChainID, csvFile) } if err := copyFiles(dst, []stringPair{ {do.Path, ""}, {do.GenesisFile, "genesis.json"}, {do.ConfigFile, "config.toml"}, {do.Priv, "priv_validator.json"}, {do.CSV, csvFile}, }); err != nil { return err } // copy from host to container logger.Debugf("Copying Files into DataCont =>\t%s:%s\n", dst, containerDst) importDo := definitions.NowDo() importDo.Name = do.Name importDo.Operations = do.Operations if err = data.ImportData(importDo); err != nil { return err } chain := loaders.MockChainDefinition(do.Name, do.ChainID, false, do.Operations.ContainerNumber) //set maintainer info chain.Maintainer.Name, chain.Maintainer.Email, err = config.GitConfigUser() if err != nil { logger.Debugf(err.Error()) } // write the chain definition file ... fileName := filepath.Join(BlockchainsPath, do.Name) + ".toml" if _, err = os.Stat(fileName); err != nil { if err = WriteChainDefinitionFile(chain, fileName); err != nil { return fmt.Errorf("error writing chain definition to file: %v", err) } } chain, err = loaders.LoadChainDefinition(do.Name, false, do.Operations.ContainerNumber) if err != nil { return err } logger.Debugf("Chain Loaded. Image =>\t\t%v\n", chain.Service.Image) chain.Operations.PublishAllPorts = do.Operations.PublishAllPorts // TODO: remove this and marshall into struct from cli directly // cmd should be "new" or "install" chain.Service.Command = cmd // do we need to create our own do.GenesisFile? var genGen bool if do.GenesisFile == "" { genGen = true } // write the list of <key>:<value> config options as flags buf := new(bytes.Buffer) for _, cv := range do.ConfigOpts { spl := strings.Split(cv, "=") if len(spl) != 2 { return fmt.Errorf("Config options should be <key>=<value> pairs. Got %s", cv) } buf.WriteString(fmt.Sprintf(" --%s=%s", spl[0], spl[1])) } configOpts := buf.String() // set chainid and other vars envVars := []string{ fmt.Sprintf("CHAIN_ID=%s", do.ChainID), fmt.Sprintf("CONTAINER_NAME=%s", containerName), fmt.Sprintf("RUN=%v", do.Run), fmt.Sprintf("GENERATE_GENESIS=%v", genGen), fmt.Sprintf("CSV=%v", csvPath), fmt.Sprintf("CONFIG_OPTS=%s", configOpts), } logger.Debugf("Set env vars from setupChain =>\t%v\n", envVars) for _, eV := range envVars { chain.Service.Environment = append(chain.Service.Environment, eV) } // TODO: if do.N > 1 ... chain.Operations.DataContainerName = util.DataContainersName(do.Name, do.Operations.ContainerNumber) if os.Getenv("TEST_IN_CIRCLE") != "true" { chain.Operations.Remove = true } logger.Debugf("Starting chain via Docker =>\t%s\n", chain.Service.Name) logger.Debugf("\twith Image =>\t\t%s\n", chain.Service.Image) err = perform.DockerRun(chain.Service, chain.Operations) // this err is caught in the defer above return }
// MakeChain runs the `eris-cm make` command in a docker container. // It returns an error. Note that if do.Known, do.AccountTypes // or do.ChainType are not set the command will run via interactive // shell. // // do.Name - name of the chain to be created (required) // do.Known - will use the mintgen tool to parse csv's and create a genesis.json (requires do.ChainMakeVals and do.ChainMakeActs) (optional) // do.ChainMakeVals - csv file to use for validators (optional) // do.ChainMakeActs - csv file to use for accounts (optional) // do.AccountTypes - use eris-cm make account-types paradigm (example: Root:1,Participants:25,...) (optional) // do.ChainType - use eris-cm make chain-types paradigm (example: simplechain) (optional) // do.Tarball - instead of outputing raw files in directories, output packages of tarbals (optional) // do.ZipFile - similar to do.Tarball except uses zipfiles (optional) // do.Verbose - verbose output (optional) // do.Debug - debug output (optional) // func MakeChain(do *definitions.Do) error { do.Service.Name = do.Name do.Service.Image = path.Join(version.ERIS_REG_DEF, version.ERIS_IMG_CM) do.Service.User = "******" do.Service.AutoData = true do.Service.Links = []string{fmt.Sprintf("%s:%s", util.ServiceContainersName("keys", do.Operations.ContainerNumber), "keys")} do.Service.Environment = []string{ fmt.Sprintf("ERIS_KEYS_PATH=http://keys:%d", 4767), // note, needs to be made aware of keys port... fmt.Sprintf("ERIS_CHAINMANAGER_ACCOUNTTYPES=%s", strings.Join(do.AccountTypes, ",")), fmt.Sprintf("ERIS_CHAINMANAGER_CHAINTYPE=%s", do.ChainType), fmt.Sprintf("ERIS_CHAINMANAGER_TARBALLS=%v", do.Tarball), fmt.Sprintf("ERIS_CHAINMANAGER_ZIPFILES=%v", do.ZipFile), fmt.Sprintf("ERIS_CHAINMANAGER_OUTPUT=%v", do.Output), fmt.Sprintf("ERIS_CHAINMANAGER_VERBOSE=%v", do.Verbose), fmt.Sprintf("ERIS_CHAINMANAGER_DEBUG=%v", do.Debug), } do.Operations.ContainerType = "service" do.Operations.SrvContainerName = util.ServiceContainersName(do.Name, do.Operations.ContainerNumber) do.Operations.DataContainerName = util.DataContainersName(do.Name, do.Operations.ContainerNumber) if do.RmD { do.Operations.Remove = true } if do.Known { log.Debug("Using MintGen rather than eris:cm") do.Service.EntryPoint = "mintgen" do.Service.Command = fmt.Sprintf("known %s --csv=%s,%s > %s", do.Name, do.ChainMakeVals, do.ChainMakeActs, path.Join(ErisContainerRoot, "chains", do.Name, "genesis.json")) } else { log.Debug("Using eris:cm rather than MintGen") do.Service.EntryPoint = fmt.Sprintf("eris-cm make %s", do.Name) } if !do.Known && len(do.AccountTypes) == 0 && do.ChainType == "" { do.Operations.Interactive = true do.Operations.Args = strings.Split(do.Service.EntryPoint, " ") } if do.Known { do.Operations.Args = append(do.Operations.Args, strings.Split(do.Service.Command, " ")...) do.Service.WorkDir = path.Join(ErisContainerRoot, "chains", do.Name) } doData := definitions.NowDo() doData.Name = do.Name doData.Operations.ContainerNumber = do.Operations.ContainerNumber doData.Operations.DataContainerName = util.DataContainersName(do.Name, do.Operations.ContainerNumber) doData.Operations.ContainerType = "service" if !do.RmD { defer data.RmData(doData) } doData.Source = AccountsTypePath doData.Destination = path.Join(ErisContainerRoot, "chains", "account-types") if err := data.ImportData(doData); err != nil { return err } doData.Source = ChainTypePath doData.Destination = path.Join(ErisContainerRoot, "chains", "chain-types") if err := data.ImportData(doData); err != nil { return err } chnPath := filepath.Join(ChainsPath, do.Name) if _, err := os.Stat(chnPath); !os.IsNotExist(err) { doData.Operations.Args = []string{"mkdir", "--parents", path.Join(ErisContainerRoot, "chains", do.Name)} if err := data.ExecData(doData); err != nil { return err } doData.Operations.Args = []string{} doData.Source = chnPath doData.Destination = path.Join(ErisContainerRoot, "chains", do.Name) if err := data.ImportData(doData); err != nil { return err } } if err := perform.DockerExecService(do.Service, do.Operations); err != nil { return err } doData.Source = path.Join(ErisContainerRoot, "chains") doData.Destination = ErisRoot return data.ExportData(doData) }