-
Notifications
You must be signed in to change notification settings - Fork 349
Expand file tree
/
Copy pathmanifest.samples.json
More file actions
87 lines (87 loc) · 2.25 KB
/
manifest.samples.json
File metadata and controls
87 lines (87 loc) · 2.25 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
{
"registry": "mcr.microsoft.com",
"repos": [
{
"id": "samples",
"name": "dotnet/framework/samples",
"readmes": [
{
"path": "README.samples.md",
"templatePath": "eng/readme-templates/README.github.md"
},
{
"path": ".portal-docs/docker-hub/README.samples.md",
"templatePath": "eng/readme-templates/README.dockerhub.md"
},
{
"path": ".portal-docs/mar/README.samples.portal.md",
"templatePath": "eng/readme-templates/README.mcr.md"
}
],
"mcrTagsMetadataTemplate": "eng/mcr-tags-metadata-templates/samples-tags.yml",
"images": [
{
"sharedTags": {
"dotnetapp": {},
"latest": {}
},
"platforms": [
{
"dockerfile": "samples/dotnetapp",
"os": "windows",
"osVersion": "windowsservercore-ltsc2022",
"tags": {
"dotnetapp-windowsservercore-ltsc2022": {}
}
}
]
},
{
"sharedTags": {
"aspnetapp": {}
},
"platforms": [
{
"dockerfile": "samples/aspnetapp",
"os": "windows",
"osVersion": "windowsservercore-ltsc2022",
"tags": {
"aspnetapp-windowsservercore-ltsc2022": {}
}
}
]
},
{
"sharedTags": {
"wcfservice":{}
},
"platforms": [
{
"dockerfile": "samples/wcfapp/Dockerfile.web",
"os": "windows",
"osVersion": "windowsservercore-ltsc2022",
"tags": {
"wcfservice-windowsservercore-ltsc2022": {}
}
}
]
},
{
"sharedTags": {
"wcfclient":{}
},
"platforms": [
{
"dockerfile": "samples/wcfapp/Dockerfile.client",
"os": "windows",
"osVersion": "windowsservercore-ltsc2022",
"tags": {
"wcfclient-windowsservercore-ltsc2022": {}
}
}
]
}
]
}
]
}