This repository was archived by the owner on Apr 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathDocker.psd1
More file actions
93 lines (75 loc) · 2.47 KB
/
Copy pathDocker.psd1
File metadata and controls
93 lines (75 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#
# Module manifest for module 'Docker'
#
# Generated by: Microsoft Corporation
#
@{
# Script module or binary module file associated with this manifest
RootModule = "Docker.psm1"
# Version number of this module. Gets replaced by appveyor at build time.
ModuleVersion = '0.0.0'
Description = "This package contains Docker PowerShell cmdlets that can be used to interact with Windows and Linux Docker hosts."
# Minimum PowerShell version. This should match the reference assembly version
# in project.json (we require 5.0 due to dependencies on parameter completion).
PowerShellVersion = '5.0.0'
# ID used to uniquely identify this module
GUID = '7cc6f829-b4b5-493d-9a99-f92dc54d7e10'
# Author of this module
Author = 'Microsoft Corporation'
# Company or vendor of this module
CompanyName = 'Microsoft Corporation'
# Copyright statement for this module
Copyright = 'Copyright (c) 2016 Microsoft'
# Type files (.ps1xml) to be loaded when importing this module
#TypesToProcess = 'Docker.PowerShell.Types.ps1xml'
# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = 'Docker.Format.ps1xml'
# Cmdlets to export from this module
CmdletsToExport = @(
'ConvertTo-ContainerImage',
'Copy-ContainerFile',
'Enter-ContainerSession',
'Export-ContainerImage',
'Get-Container',
'Get-ContainerDetail',
'Get-ContainerImage',
'Get-ContainerNet',
'Get-ContainerNetDetail',
'Import-ContainerImage',
'New-Container',
'New-ContainerImage',
'New-ContainerNet',
'Remove-Container',
'Remove-ContainerImage',
'Remove-ContainerNet',
'Invoke-ContainerImage',
'Request-ContainerImage',
'Add-ContainerImageTag',
'Start-Container',
'Start-ContainerProcess',
'Stop-Container',
'Submit-ContainerImage',
'Wait-Container'
)
# Aliases to export from this module
AliasesToExport = @(
'Attach-Container',
'Build-ContainerImage',
'Commit-Container',
'Exec-Container',
'Load-ContainerImage',
'Pull-ContainerImage',
'Push-ContainerImage',
'Run-ContainerImage',
'Save-ContainerImage',
'Tag-ContainerImage'
)
PrivateData = @{
PSData = @{
LicenseUri = "https://raw.githubusercontent.com/Microsoft/Docker-PowerShell/master/LICENSE"
ProjectUri = "https://github.com/Microsoft/Docker-PowerShell"
}
}
# HelpInfo
HelpInfoUri="https://github.com/Microsoft/Docker-PowerShell"
}