Const
Copy a file or directory to a container.
Run docker inspect
on a container and return its output.
Get a container's logs.
Get the current status of a container. If the container does not exist at all, the status will be DockerContainerStatus.Removed.
Kill a container.
Run a container that isn't already running.
Run a command on a container that is already running.
Runs a callback (which presumably will run a command within the given containerName
)
and kills the container if the callback fails.
Wait until a container has a status that can be classified as "exited".
Wait until a container is completely removed.
Wait until a container is running and responsive.
Detects if an image exists in the local registry.
Removes an image from the local registry.
Downloads an image if it is missing from the local registry.
Detects if the Docker service is running.
Tries to start Docker based ont he current operating system's supported commands. The success of this operation is heavily dependent on how you have Docker setup on your system.
Manually create a string of env mapping flags. This is automatically done already inside the run container methods.
Manually create a string of port mapping flags. This is automatically done already inside the run container methods.
Manually create a string of volume mapping flags. This is automatically done already inside the run container methods.
Centralized Docker API from
@augment-vir/node
.