Container exposing VBoxManage utility
1.7K
This container exposes the VBoxManage utility from Oracle VirtualBox. This container is not intended to start Virtual Machines but instead for e.g. creating or modifying the VDI files.
Tip: Define a function as shortcut for invoking VBoxManage similiar as the following:
function VBoxManageWrapper {
local data_dir=$1
shift
docker run -it -e "DATA_DIR=$data_dir" cubeearth/tools-vboxmanage $@
}
| Scope | Command |
|---|---|
| original command | VBoxManage list hostinfo |
| docker-compose | DATA_DIR='./data' docker-compose run main list hostinfo |
| docker | docker run -it -e "DATA_DIR=./data" cubeearth/tools-vboxmanage list hostinfo |
| wrapper | VBoxManageX "./data" list hostinfo |
Content type
Image
Digest
Size
359.3 MB
Last updated
about 9 years ago
docker pull cubeearth/tools-vboxmanage