Main Content

setDeploymentLocation

Set location for deployed application on target computer

Since R2022b

    Description

    example

    setDeploymentLocation(tg, locationOnTarget) uses the specified location on target to persist the deployed applications.

    Examples

    collapse all

    Create a target object and add a target with name LinuxTarget1 containing user name user1 and password myPassword.

    tgs = linux.Targets();
    tg = tgs.addTarget("LinuxTarget1", "178.10.10.1", "user1", "myPassword");

    Set the deployment location.

    tg.setDeploymentLocation("/tmp/workingFolder");

    Input Arguments

    collapse all

    Object represents a target computer. Use the object to establish the connection with Linux target, to deploy the applications on Linux target, and perform several other actions.

    Example: myTargetHandle

    Specify a location on target to persist the deployed application instead of placing them on a location on docker container. This helps in persisting the applications even when the docker crashes.

    Example: "/tmp/workingFolder"

    Version History

    Introduced in R2022b