docker.Volume
Explore with Pulumi AI
Creates and destroys a volume in Docker. This can be used alongside docker.Container to prepare volumes that can be shared across containers.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Docker = Pulumi.Docker;
return await Deployment.RunAsync(() =>
{
var sharedVolume = new Docker.Volume("sharedVolume");
});
package main
import (
"github.com/pulumi/pulumi-docker/sdk/v4/go/docker"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := docker.NewVolume(ctx, "sharedVolume", nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.docker.Volume;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var sharedVolume = new Volume("sharedVolume");
}
}
import pulumi
import pulumi_docker as docker
shared_volume = docker.Volume("sharedVolume")
import * as pulumi from "@pulumi/pulumi";
import * as docker from "@pulumi/docker";
const sharedVolume = new docker.Volume("sharedVolume", {});
resources:
sharedVolume:
type: docker:Volume
Create Volume Resource
new Volume(name: string, args?: VolumeArgs, opts?: CustomResourceOptions);
@overload
def Volume(resource_name: str,
opts: Optional[ResourceOptions] = None,
driver: Optional[str] = None,
driver_opts: Optional[Mapping[str, Any]] = None,
labels: Optional[Sequence[VolumeLabelArgs]] = None,
name: Optional[str] = None)
@overload
def Volume(resource_name: str,
args: Optional[VolumeArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewVolume(ctx *Context, name string, args *VolumeArgs, opts ...ResourceOption) (*Volume, error)
public Volume(string name, VolumeArgs? args = null, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: docker:Volume
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Volume Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Volume resource accepts the following input properties:
- Driver string
Driver type for the volume. Defaults to
local
.- Driver
Opts Dictionary<string, object> Options specific to the driver.
- Labels
List<Volume
Label> User-defined key/value metadata
- Name string
The name of the Docker volume (will be generated if not provided).
- Driver string
Driver type for the volume. Defaults to
local
.- Driver
Opts map[string]interface{} Options specific to the driver.
- Labels
[]Volume
Label Args User-defined key/value metadata
- Name string
The name of the Docker volume (will be generated if not provided).
- driver String
Driver type for the volume. Defaults to
local
.- driver
Opts Map<String,Object> Options specific to the driver.
- labels
List<Volume
Label> User-defined key/value metadata
- name String
The name of the Docker volume (will be generated if not provided).
- driver string
Driver type for the volume. Defaults to
local
.- driver
Opts {[key: string]: any} Options specific to the driver.
- labels
Volume
Label[] User-defined key/value metadata
- name string
The name of the Docker volume (will be generated if not provided).
- driver str
Driver type for the volume. Defaults to
local
.- driver_
opts Mapping[str, Any] Options specific to the driver.
- labels
Sequence[Volume
Label Args] User-defined key/value metadata
- name str
The name of the Docker volume (will be generated if not provided).
- driver String
Driver type for the volume. Defaults to
local
.- driver
Opts Map<Any> Options specific to the driver.
- labels List<Property Map>
User-defined key/value metadata
- name String
The name of the Docker volume (will be generated if not provided).
Outputs
All input properties are implicitly available as output properties. Additionally, the Volume resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Mountpoint string
The mountpoint of the volume.
- Id string
The provider-assigned unique ID for this managed resource.
- Mountpoint string
The mountpoint of the volume.
- id String
The provider-assigned unique ID for this managed resource.
- mountpoint String
The mountpoint of the volume.
- id string
The provider-assigned unique ID for this managed resource.
- mountpoint string
The mountpoint of the volume.
- id str
The provider-assigned unique ID for this managed resource.
- mountpoint str
The mountpoint of the volume.
- id String
The provider-assigned unique ID for this managed resource.
- mountpoint String
The mountpoint of the volume.
Look up Existing Volume Resource
Get an existing Volume resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VolumeState, opts?: CustomResourceOptions): Volume
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
driver: Optional[str] = None,
driver_opts: Optional[Mapping[str, Any]] = None,
labels: Optional[Sequence[VolumeLabelArgs]] = None,
mountpoint: Optional[str] = None,
name: Optional[str] = None) -> Volume
func GetVolume(ctx *Context, name string, id IDInput, state *VolumeState, opts ...ResourceOption) (*Volume, error)
public static Volume Get(string name, Input<string> id, VolumeState? state, CustomResourceOptions? opts = null)
public static Volume get(String name, Output<String> id, VolumeState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Driver string
Driver type for the volume. Defaults to
local
.- Driver
Opts Dictionary<string, object> Options specific to the driver.
- Labels
List<Volume
Label> User-defined key/value metadata
- Mountpoint string
The mountpoint of the volume.
- Name string
The name of the Docker volume (will be generated if not provided).
- Driver string
Driver type for the volume. Defaults to
local
.- Driver
Opts map[string]interface{} Options specific to the driver.
- Labels
[]Volume
Label Args User-defined key/value metadata
- Mountpoint string
The mountpoint of the volume.
- Name string
The name of the Docker volume (will be generated if not provided).
- driver String
Driver type for the volume. Defaults to
local
.- driver
Opts Map<String,Object> Options specific to the driver.
- labels
List<Volume
Label> User-defined key/value metadata
- mountpoint String
The mountpoint of the volume.
- name String
The name of the Docker volume (will be generated if not provided).
- driver string
Driver type for the volume. Defaults to
local
.- driver
Opts {[key: string]: any} Options specific to the driver.
- labels
Volume
Label[] User-defined key/value metadata
- mountpoint string
The mountpoint of the volume.
- name string
The name of the Docker volume (will be generated if not provided).
- driver str
Driver type for the volume. Defaults to
local
.- driver_
opts Mapping[str, Any] Options specific to the driver.
- labels
Sequence[Volume
Label Args] User-defined key/value metadata
- mountpoint str
The mountpoint of the volume.
- name str
The name of the Docker volume (will be generated if not provided).
- driver String
Driver type for the volume. Defaults to
local
.- driver
Opts Map<Any> Options specific to the driver.
- labels List<Property Map>
User-defined key/value metadata
- mountpoint String
The mountpoint of the volume.
- name String
The name of the Docker volume (will be generated if not provided).
Supporting Types
VolumeLabel, VolumeLabelArgs
Import
Example Assuming you created a volume
as follows #!/bin/bash docker volume create prints the long ID 524b0457aa2a87dd2b75c74c3e4e53f406974249e63ab3ed9bf21e5644f9dc7d you provide the definition for the resource as follows terraform resource “docker_volume” “foo” {
name = “524b0457aa2a87dd2b75c74c3e4e53f406974249e63ab3ed9bf21e5644f9dc7d” } then the import command is as follows #!/bin/bash
$ pulumi import docker:index/volume:Volume foo 524b0457aa2a87dd2b75c74c3e4e53f406974249e63ab3ed9bf21e5644f9dc7d
Package Details
- Repository
- Docker pulumi/pulumi-docker
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
docker
Terraform Provider.