This activity allows you to copy a file.
Start a container of Flogo Web UI :
docker run --name flogo -it -d -p 3303:3303 -e FLOGO_NO_ENGINE_RECREATION=false flogo/flogo-docker eula-accept
The environment variable FLOGO_NO_ENGINE_RECREATION=false allows to force import of installed contributions.
To install the activity into the started container :
docker exec -it flogo sh -c 'cd /tmp/flogo-web/build/server/local/engines/flogo-web && flogo install github.com/square-it/flogo-contrib-activities/copyfile'
Restart the container
docker restart flogo
flogo install github.com/square-it/flogo-contrib-activities/copyfile
Inputs and Outputs:
{
"inputs":[
{
"name": "source",
"type": "string",
"required": true
},
{
"name":"destination",
"type":"string",
"required": true
}
],
"outputs": [
]
}
Setting | Required | Description |
---|---|---|
source | True | The source file |
destination | True | The destination file |