Skip to content
Michael Woodward edited this page Feb 4, 2017 · 1 revision

Push files from host to the container

Usage:
    workflow push files

Arguments:
    files       Array of extra paths to push into the container

Example:
    workflow push app/etc app/code

Under the hood this will run the following commands

docker cp app/etc container-name:/var/www/app
docker cp app/code container-name:/var/www/app
Clone this wiki locally