exec
Usage: hyper exec [OPTIONS] CONTAINER COMMAND [ARG...]
Run a command in a running container
-d, --detach=false Detached mode: run command in the background
--help=false Print usage
-t, --tty Allocate a pseudo-TTY
-i, --interactive=false Keep STDIN open even if not attachedExamples
$ hyper run --name ubuntu-bash --rm -i -t ubuntu bash$ hyper exec -d ubuntu-bash touch /tmp/execWorks$ hyper exec -it ubuntu-bash bashLast updated