-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdive.nuspec
63 lines (52 loc) · 2.02 KB
/
dive.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>dive</id>
<title>Dive</title>
<version>0.12.0</version>
<authors>Alex Goodman</authors>
<owners>Marcin Bojko</owners>
<summary>A tool for exploring a docker image, layer contents, and discovering ways to shrink your Docker image size.</summary>
<description>
# Dive
## Description
A tool for exploring a docker image, layer contents, and discovering ways to shrink your Docker image size - [https://github.com/wagoodman/dive](https://github.com/wagoodman/dive)
## Features
* Install and uninstall via Chocolatey
* Supports 64-bit version
## Usage
### Direct
```
choco install dive -y
```
### YAML (Foreman, puppetlabs/chocolatey module)
```
dive:
ensure: latest
provider: chocolatey
```
or
```
dive:
ensure: latest
```
</description>
<projectUrl>https://github.com/wagoodman/dive</projectUrl>
<packageSourceUrl>https://github.com/marcinbojko/dive</packageSourceUrl>
<docsUrl>https://github.com/wagoodman/dive</docsUrl>
<iconUrl>https://rawcdn.githack.com/marcinbojko/dive/606e970ab527df05608823d51c958c3a62f0993b/icons/dive.png</iconUrl>
<bugTrackerUrl>https://github.com/wagoodman/dive/issues</bugTrackerUrl>
<tags>dive docker image admin</tags>
<copyright>Alex Goodman</copyright>
<licenseUrl>https://github.com/wagoodman/dive/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://github.com/wagoodman/dive/releases</releaseNotes>
<dependencies>
</dependencies>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>