You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [.NET Framework Docker samples](https://github.com/Microsoft/dotnet-framework-docker/blob/master/samples/README.md) show various ways to use .NET Framework and Docker together. See [Building Docker Images for .NET Framework Applications](https://docs.microsoft.com/dotnet/framework/docker/) to learn more.
After the application starts, navigate to `http://localhost:8000` in your web browser. You need to navigate to the application via IP address instead of `localhost` for earlier Windows versions, which is demonstrated in [View the ASP.NET app in a running container on Windows](https://github.com/microsoft/dotnet-framework-docker/blob/master/samples/aspnetapp/README.md#view-the-aspnet-app-in-a-running-container-on-windows).
29
31
32
+
### Container sample: Run WCF service and client applications
33
+
34
+
Type the following command to run a sample WCF service application with Docker:
35
+
36
+
```console
37
+
docker run -it --rm --name wcfservice_sample microsoft/dotnet-framework-samples:wcfservie
38
+
```
39
+
After the container starts, find the IP address of the container instance:
@@ -52,7 +77,7 @@ The [.NET Framework](https://www.microsoft.com/net/framework) is a general purpo
52
77
53
78
You can use C#, F# and VB to write .NET Framework apps. C# is simple, powerful, type-safe, and object-oriented while retaining the expressiveness and elegance of C-style languages. F# is a multi-paradigm programming language, enabling both functional and object-oriented patterns and practices. VB is a rapid development programming language with the deepest integration between the language and Visual Studio, providing the fastest path to a working app.
54
79
55
-
The .NET Framework was first released by Microsoft in 2001. The latest version is [.NET Framework 4.7.1](https://www.microsoft.com/net/framework).
80
+
The .NET Framework was first released by Microsoft in 2001. The latest version is [.NET Framework 4.7.2](https://www.microsoft.com/net/framework).
56
81
57
82
> https://docs.microsoft.com/dotnet/framework/
58
83
@@ -73,3 +98,4 @@ See the following related repos for other application types:
73
98
*[microsoft/dotnet](https://hub.docker.com/r/microsoft/dotnet/) for .NET Core images.
74
99
*[microsoft/aspnet](https://hub.docker.com/r/microsoft/aspnet/) for ASP.NET Web Forms and MVC images.
75
100
*[microsoft/dotnet-framework](https://hub.docker.com/r/microsoft/dotnet-framework/) for .NET Framework images (for web applications, see microsoft/aspnet).
101
+
*[microsoft/wcf](https://hub.docker.com/r/microsoft/wcf/) for WCF images.
0 commit comments