Using Volumes with vSphere Integrated Containers Engine
vSphere Integrated Containers Engine supports the use of container volumes.
IMPORTANT: To use container volume capabilities with vSphere Integrated Containers Engine, you or the vSphere administrator must configure the virtual container host (VCH) appropriately at the moment of deployment of the VCH. When you create or the vSphere administrator creates a VCH, you or the administrator must specify the datastore to use to store container volumes in the vic-machine create --volume-store
option. You cannot currently add volume stores, and therefore volume capabilities, to a VCH after its initial deployment. For information about how to use the vic-machine create --volume-store
option, see the section on volume-store
in VCH Deployment Options in vSphere Integrated Containers Engine Installation.
- Obtain the List of Available Volume Stores
- Obtain the List of Available Volumes
- Create a Volume in a Volume Store
- Creating Volumes from Images
- Create a Container with a New Anonymous or Named Volume
- Mount an Existing Volume on a Container
- Obtain Information About a Volume
- Delete a Named Volume from a Volume Store
For simplicity, the examples in this topic assume that the VCHs implement TLS authentication with self-signed untrusted certificates, with no client verification.
Obtain the List of Available Volume Stores
To obtain the list of volume stores that are available on a VCH, run docker info
.
docker -H virtual_container_host_address:2376 --tls info
The list of available volume stores for this VCH appears in the docker info
output under VolumeStores
.
[...] Storage Driver: vSphere Integrated Containers Backend Engine VolumeStores: volume_store_1 volume_store_2 ... volume_store_n vSphere Integrated Containers Backend Engine: RUNNING [...]
Obtain the List of Available Volumes
To obtain a list of volumes that are available on a VCH, run docker volume ls
.
docker -H virtual_container_host_address:2376 --tls volume ls DRIVER VOLUME NAME vsphere volume_1 vsphere volume_2 [...] [...] vsphere volume_n
Create a Volume in a Volume Store
When you use the docker volume create
command to create a volume, you can optionally provide a name for the volume by specifying the --name
option. If you do not specify --name
, docker volume create
assigns a random UUID to the volume.
If you or the vSphere administrator created the VCH with one or more volume stores, but none of the volume stores are named
default
, you must specify the name of an existing volume store in the--opt VolumeStore
option. If you do not specify--opt VolumeStore
,docker volume create
searches for a volume store nameddefault
, and returns an error if no such volume store exists.docker -H virtual_container_host_address:2376 --tls volume create --opt VolumeStore=volume_store_label --name volume_name
If you or the vSphere administrator created the VCH with a volume store named
default
, you do not need to specify--opt VolumeStore
in thedocker volume create
command. If you do not specify a volume store name, thedocker volume create
command automatically uses thedefault
volume store if it exists.docker -H virtual_container_host_address:2376 --tls volume create --name volume_name
You can optionally set the capacity of a volume by specifying the
--opt Capacity
option when you rundocker volume create
. If you do not specify the--opt Capacity
option, the volume is created with the default capacity of 1024MB.If you do not specify a unit for the capacity, the default unit will be in Megabytes.
docker -H virtual_container_host_address:2376 --tls volume create --opt VolumeStore=volume_store_label --opt Capacity=2048 --name volume_name
To create a volume with a capacity in megabytes, gigabytes, or terabytes, include
MB
,GB
, orTB
in the value that you pass to--opt Capacity
. The unit is case insensitive.docker -H virtual_container_host_address:2376 --tls volume create --opt VolumeStore=volume_store_label --opt Capacity=10GB --name volume_name
After you create a volume by using docker volume create
, you can mount that volume in a container by running either of the following commands:
docker -H virtual_container_host_address:2376 --tls create -v volume_name:/folder busybox
docker -H virtual_container_host_address:2376 --tls run -v volume_name:/folder busybox
In the examples above, Docker mounts the volume volume_name
to /folder
in the container.
NOTE: When using a vSphere Integrated Containers Engine VCH as your Docker endpoint, the storage driver is always the vSphere Integrated Containers Engine Backend Engine. If you specify the docker volume create --driver
option an error stating that a bad driver has been selected will occur.
Creating Volumes from Images
Some images, for example, mongo
or redis:alpine
, contain volume bind information in their metadata. vSphere Integrated Containers Engine creates such volumes with the default parameters and treats them as anonymous volumes. vSphere Integrated Containers Engine treats all volume mount paths as unique, in the same way that Docker does. This should be kept in mind if you attempt to bind other volumes to the same location as anonymous or image volumes. A specified volume always takes priority over an anonymous volume.
If you require an image volume with a different volume capacity to the default, create a named volume with the required capacity. You can mount that named volume to the location that the image metadata specifies. You can find the location by running docker inspect image_name
and consulting the Volumes
section of the output. The resulting container has the required storage capacity and the endpoint.
Create a Container with a New Anonymous or Named Volume
If you intend to create named or anonymous volumes by using docker create -v
when creating containers, a volume store named default
must exist in the VCH.
NOTES:
- vSphere Integrated Containers Engine does not support mounting folders as data volumes. A command such as
docker create -v /folder_name:/folder_name busybox
is not supported. - If you use
docker create -v
to create containers and mount new volumes on them, vSphere Integrated Containers Engine only supports the-r
and-rw
options.
Create a Container with a New Anonymous Volume
To create an anonymous volume, you include the path to the destination at which you want to mount the anonymous volume in the docker create -v
command. Docker creates the anonymous volume in the default
volume store, if it exists. The VCH mounts the anonymous volume on the container.
The docker create -v
example below performs the following actions:
- Creates a busybox container that uses an anonymous volume in the
default
volume store. - Mounts the volume to
/volumes
in the container.
docker -H virtual_container_host_address:2376 --tls create -v /volumes busybox
Create a Container with a Named Volume
To create a container with a new named volume, you specify a volume name in the docker create -v
command. When you create containers that with named volumes, the VCH checks whether the volume exists in the volume store, and if it does not, creates it. The VCH mounts the existing or new volume on the container.
The docker create -v
example below performs the following actions:
- Creates a busybox container
- Creates volume named
volume_1
in thedefault
volume store. - Mounts the volume to the
/volumes
folder in the container.
docker -H virtual_container_host_address:2376 --tls create -v volume_1:/volumes busybox
Mount an Existing Volume on a Container
Mounting existing volumes on containers is subject to the following limitations:
- vSphere Integrated Containers Engine currently supports mounting a volume on only one container at a time.
- Docker does not support unmounting a volume from a container, whether that container is running or not. When you mount a volume on a container by using
docker create -v
, that volume remains mounted on the container until you remove the container. When you have removed the container you can mount the volume onto a new container. - If you intend to create and mount a volume on one container, remove that container, and then mount the same volume on another container, use a named volume. It is possible to mount an anonymous volume on one container, remove that container, and then mount the anonymous volume on another container, but it is not recommended to do so.
The docker create -v
example below performs the following operations:
- Creates a container named
container1
from thebusybox
image. - Mounts the named volume
volume1
to themyData
folder on that container, starts the container, and attaches to it. - After performing operations in
volume1:/myData
, stops and removescontainer1
. - Creates a container named
container2
from the Ubuntu image. - Mounts
volume1
to themyData
folder oncontainer2
.
docker -H virtual_container_host_address:2376 --tls create --name container1 -v volume1:/myData busybox docker start container1 docker attach container1 [Perform container operations and detach] docker stop container1 docker rm container1 docker create -it --name container2 -v volume1:/myData ubuntu docker start container2 docker attach container2 [Perform container operations with the same volume that was previously mounted to container1]
Obtain Information About a Volume
To get information about a volume, run docker volume inspect
and specify the name of the volume.
docker -H virtual_container_host_address:2376 --tls volume inspect volume_name
Delete a Named Volume from a Volume Store
To delete a volume, run docker volume rm
and specify the name of the volume to delete.
docker -H virtual_container_host_address:2376 --tls volume rm volume_name
NOTE: vSphere Integrated Containers does not support running docker rm -v
to remove volumes that are associated with a container.