Skip to content

Commit 5f97af5

Browse files
committed
Initial commit
0 parents  commit 5f97af5

File tree

5 files changed

+340
-0
lines changed

5 files changed

+340
-0
lines changed

.gitignore

+272
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,272 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.userosscache
8+
*.sln.docstates
9+
10+
# User-specific files (MonoDevelop/Xamarin Studio)
11+
*.userprefs
12+
13+
# Build results
14+
[Dd]ebug/
15+
[Dd]ebugPublic/
16+
[Rr]elease/
17+
[Rr]eleases/
18+
x64/
19+
x86/
20+
bld/
21+
[Bb]in/
22+
[Oo]bj/
23+
[Ll]og/
24+
[Oo]ut/
25+
26+
# Visual Studio 2015 cache/options directory
27+
.vs/
28+
# Uncomment if you have tasks that create the project's static files in wwwroot
29+
#wwwroot/
30+
31+
# MSTest test Results
32+
[Tt]est[Rr]esult*/
33+
[Bb]uild[Ll]og.*
34+
35+
# NUNIT
36+
*.VisualState.xml
37+
TestResult.xml
38+
39+
# Build Results of an ATL Project
40+
[Dd]ebugPS/
41+
[Rr]eleasePS/
42+
dlldata.c
43+
44+
# DNX
45+
project.lock.json
46+
project.fragment.lock.json
47+
artifacts/
48+
49+
*_i.c
50+
*_p.c
51+
*_i.h
52+
*.ilk
53+
*.meta
54+
*.obj
55+
*.pch
56+
*.pdb
57+
*.pgc
58+
*.pgd
59+
*.rsp
60+
*.sbr
61+
*.tlb
62+
*.tli
63+
*.tlh
64+
*.tmp
65+
*.tmp_proj
66+
*.log
67+
*.vspscc
68+
*.vssscc
69+
.builds
70+
*.pidb
71+
*.svclog
72+
*.scc
73+
74+
# Chutzpah Test files
75+
_Chutzpah*
76+
77+
# Visual C++ cache files
78+
ipch/
79+
*.aps
80+
*.ncb
81+
*.opendb
82+
*.opensdf
83+
*.sdf
84+
*.cachefile
85+
*.VC.db
86+
*.VC.VC.opendb
87+
88+
# Visual Studio profiler
89+
*.psess
90+
*.vsp
91+
*.vspx
92+
*.sap
93+
94+
# TFS 2012 Local Workspace
95+
$tf/
96+
97+
# Guidance Automation Toolkit
98+
*.gpState
99+
100+
# ReSharper is a .NET coding add-in
101+
_ReSharper*/
102+
*.[Rr]e[Ss]harper
103+
*.DotSettings.user
104+
105+
# JustCode is a .NET coding add-in
106+
.JustCode
107+
108+
# TeamCity is a build add-in
109+
_TeamCity*
110+
111+
# DotCover is a Code Coverage Tool
112+
*.dotCover
113+
114+
# Visual Studio code coverage results
115+
*.coverage
116+
*.coveragexml
117+
118+
# NCrunch
119+
_NCrunch_*
120+
.*crunch*.local.xml
121+
nCrunchTemp_*
122+
123+
# MightyMoose
124+
*.mm.*
125+
AutoTest.Net/
126+
127+
# Web workbench (sass)
128+
.sass-cache/
129+
130+
# Installshield output folder
131+
[Ee]xpress/
132+
133+
# DocProject is a documentation generator add-in
134+
DocProject/buildhelp/
135+
DocProject/Help/*.HxT
136+
DocProject/Help/*.HxC
137+
DocProject/Help/*.hhc
138+
DocProject/Help/*.hhk
139+
DocProject/Help/*.hhp
140+
DocProject/Help/Html2
141+
DocProject/Help/html
142+
143+
# Click-Once directory
144+
publish/
145+
146+
# Publish Web Output
147+
*.[Pp]ublish.xml
148+
*.azurePubxml
149+
# TODO: Comment the next line if you want to checkin your web deploy settings
150+
# but database connection strings (with potential passwords) will be unencrypted
151+
*.pubxml
152+
*.publishproj
153+
154+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
155+
# checkin your Azure Web App publish settings, but sensitive information contained
156+
# in these scripts will be unencrypted
157+
PublishScripts/
158+
159+
# NuGet Packages
160+
*.nupkg
161+
# The packages folder can be ignored because of Package Restore
162+
**/packages/*
163+
# except build/, which is used as an MSBuild target.
164+
!**/packages/build/
165+
# Uncomment if necessary however generally it will be regenerated when needed
166+
#!**/packages/repositories.config
167+
# NuGet v3's project.json files produces more ignoreable files
168+
*.nuget.props
169+
*.nuget.targets
170+
171+
# Microsoft Azure Build Output
172+
csx/
173+
*.build.csdef
174+
175+
# Microsoft Azure Emulator
176+
ecf/
177+
rcf/
178+
179+
# Windows Store app package directories and files
180+
AppPackages/
181+
BundleArtifacts/
182+
Package.StoreAssociation.xml
183+
_pkginfo.txt
184+
185+
# Visual Studio cache files
186+
# files ending in .cache can be ignored
187+
*.[Cc]ache
188+
# but keep track of directories ending in .cache
189+
!*.[Cc]ache/
190+
191+
# Others
192+
ClientBin/
193+
~$*
194+
*~
195+
*.dbmdl
196+
*.dbproj.schemaview
197+
*.jfm
198+
*.pfx
199+
*.publishsettings
200+
node_modules/
201+
orleans.codegen.cs
202+
203+
# Since there are multiple workflows, uncomment next line to ignore bower_components
204+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
205+
#bower_components/
206+
207+
# RIA/Silverlight projects
208+
Generated_Code/
209+
210+
# Backup & report files from converting an old project file
211+
# to a newer Visual Studio version. Backup files are not needed,
212+
# because we have git ;-)
213+
_UpgradeReport_Files/
214+
Backup*/
215+
UpgradeLog*.XML
216+
UpgradeLog*.htm
217+
218+
# SQL Server files
219+
*.mdf
220+
*.ldf
221+
222+
# Business Intelligence projects
223+
*.rdl.data
224+
*.bim.layout
225+
*.bim_*.settings
226+
227+
# Microsoft Fakes
228+
FakesAssemblies/
229+
230+
# GhostDoc plugin setting file
231+
*.GhostDoc.xml
232+
233+
# Node.js Tools for Visual Studio
234+
.ntvs_analysis.dat
235+
236+
# Visual Studio 6 build log
237+
*.plg
238+
239+
# Visual Studio 6 workspace options file
240+
*.opt
241+
242+
# Visual Studio LightSwitch build output
243+
**/*.HTMLClient/GeneratedArtifacts
244+
**/*.DesktopClient/GeneratedArtifacts
245+
**/*.DesktopClient/ModelManifest.xml
246+
**/*.Server/GeneratedArtifacts
247+
**/*.Server/ModelManifest.xml
248+
_Pvt_Extensions
249+
250+
# Paket dependency manager
251+
.paket/paket.exe
252+
paket-files/
253+
254+
# FAKE - F# Make
255+
.fake/
256+
257+
# JetBrains Rider
258+
.idea/
259+
*.sln.iml
260+
261+
# CodeRush
262+
.cr/
263+
264+
# Python Tools for Visual Studio (PTVS)
265+
__pycache__/
266+
*.pyc
267+
268+
# Cake - Uncomment if you are using it
269+
# tools/
270+
271+
# VS Code
272+
.vscode/

LICENSE.TXT

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Microsoft and Contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
.NET Framework Docker Samples
2+
=============================
3+
4+
This repo contains samples that demonstrate various .NET Framework Docker configurations, which you can use as the basis of your own Docker images. These samples depend on the [.NET Framework Docker images](https://hub.docker.com/r/microsoft/dotnet-framework/) on Docker Hub, provided by the .NET Team at Microsoft.
5+
6+
Docker uses [docker/whalesay](https://hub.docker.com/r/docker/whalesay/) as a getting started sample. The .NET Core Team at Microsoft uses [dotnetbot](https://github.com/dotnet-bot), which is the mascot for .NET open source projects. Got something to say? Both whalesay and dotnetbot are great listeners.
7+
8+
You can pick the sample that best fits the scenario you are interested in. The instructions for each sample describe how to target [Windows](http://aka.ms/windowscontainers).
9+
10+
You need to have the [Docker for Windows client](https://docs.docker.com/docker-for-windows/) client installed to use these samples.
11+
12+
Samples
13+
-------
14+
15+
The following samples show different ways to use .NET Core images.
16+
17+
### .NET Framework 4.6.2
18+
19+
- [dotnetapp-4.6.2](dotnetapp-4.6.2) - This sample demonstrates how to build a Docker image for a .NET Framework 4.6.2 application.
20+
21+
### .NET Framework 3.5
22+
23+
- [dotnetapp-3.5](dotnetapp-3.5) - This sample demonstrates how to build a Docker image for a .NET Framework 3.5 application.
24+
25+
Related Repositories
26+
--------------------
27+
28+
See the following related Docker Hub repos:
29+
30+
- [microsoft/dotnet-framework](https://hub.docker.com/r/microsoft/dotnet-framework/) for .NET Framework images (for web applications, see microsoft/aspnet).
31+
- [microsoft/aspnet](https://hub.docker.com/r/microsoft/aspnet/) for ASP.NET Web Forms and MVC images.
32+
- [microsoft/dotnet](https://hub.docker.com/r/microsoft/dotnet/) for .NET Core images.
33+
- [microsoft/dotnet-samples](https://hub.docker.com/r/microsoft/dotnet-samples/) for .NET Core sample images.
34+
- [microsoft/aspnetcore](https://hub.docker.com/r/microsoft/aspnetcore/) for ASP.NET Core images.
35+
36+
See the following related GitHub repos:
37+
38+
- [dotnet/dotnet-docker-samples](https://github.com/dotnet/dotnet-docker-samples/) for .NET Core samples.
39+

dotnetapp-3.5/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dotnetapp-3.5 Sample
2+
====================
3+
4+
The dotnetapp-3.5 sample demonstrates how you can build and run the dotnetapp sample using the [.NET Framework 3.5 Docker image](https://hub.docker.com/r/microsoft/dotnet-framework/).

dotnetapp-4.6.2/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dotnetapp-4.6.2 Sample
2+
======================
3+
4+
The dotnetapp-4.6.2 sample demonstrates how you can build and run the dotnetapp sample using the [.NET Framework 4.6.2 Docker image](https://hub.docker.com/r/microsoft/dotnet-framework/).

0 commit comments

Comments
 (0)