Class ContainerVolumeArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Docker.Inputs
Assembly: Pulumi.Docker.dll
Syntax
public sealed class ContainerVolumeArgs : ResourceArgs
Constructors
View SourceContainerVolumeArgs()
Declaration
public ContainerVolumeArgs()
Properties
View SourceContainerPath
The path in the container where the device will be binded.
Declaration
public Input<string> ContainerPath { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
FromContainer
The container where the volume is coming from.
Declaration
public Input<string> FromContainer { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
HostPath
The path on the host where the device is located.
Declaration
public Input<string> HostPath { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ReadOnly
If true, this volume will be readonly. Defaults to false.
Declaration
public Input<bool> ReadOnly { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
VolumeName
The name of the docker volume which should be mounted.
Declaration
public Input<string> VolumeName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |