Main Content

updateTarget

Update target computer if it is out dated

Since R2022b

    Description

    example

    updateTarget(tg) updates the docker image on the target if it is outdated or not present.

    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");

    Update target software.

    tg.updateTarget();

    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

    Version History

    Introduced in R2022b