flogo icon indicating copy to clipboard operation
flogo copied to clipboard

Always install a specific version of Flogo

Open akpuvvada opened this issue 5 years ago • 1 comments

What is the command to use to always get a specific version of Flogo container in Dockers instead of the latest one?

For example, if we have to refresh my system and reinstall, or when I reinstall or install an update to Docker (when the docker containers get reset to none) or my colleague needs to continue working on the same application, I would like to have all the work done in the same version so that no net new issues pop-up.

akpuvvada avatar Nov 21 '19 16:11 akpuvvada

Hi @akpuvvada you can specify the specific version of all imports. If you'd like to use a specific version of core, when creating the application specify that using the --cv flag.

Example of imports with specific versions:

"imports": [
    "github.com/project-flogo/aws-contrib/activity/lambda@master",
    "github.com/project-flogo/contrib/trigger/[email protected]",
    "github.com/project-flogo/contrib/trigger/rest",
    "github.com/project-flogo/[email protected]",
  ]

mellistibco avatar Nov 25 '19 16:11 mellistibco