docker_inspect {googleComputeEngineR}R Documentation

Inspect one or more containers, given name(s) or ID(s).

Description

Inspect one or more containers, given name(s) or ID(s).

Usage

docker_inspect(host = localhost, names = NULL, ...)

Arguments

host

A host object.

names

Names of the containers

...

Other arguments passed to the SSH command for the host

Value

A list of lists, where each sublist represents one container. This is the output of 'docker inspect' translated directly from raw JSON to an R object.

Author(s)

Winston Change winston@stdout.org

Examples

## Not run: 
docker_run(localhost, "debian:testing", "echo foo", name = "harbor-test")
docker_inspect(localhost, "harbor-test")

## End(Not run)

[Package googleComputeEngineR version 0.3.0 Index]