@@ -33,15 +33,19 @@ and Python from within {product-title}.
33
33
[[dot-net-core-supported-versions]]
34
34
== Supported Versions
35
35
36
+ * .NET Core version 2.2
36
37
* .NET Core version 2.1
37
- * .NET Core version 2.0
38
38
* .NET Core version 1.1
39
39
* .NET Core version 1.0
40
40
* Supported on Red Hat Enterprise Linux (RHEL) 7
41
41
ifdef::openshift-enterprise[]
42
42
and {product-title} versions 3.3 and later
43
43
endif::openshift-enterprise[]
44
44
45
+ For release details related to .NET Core version 2.2, see
46
+ link:https://access.redhat.com/documentation/en-us/net_core/2.2/html/release_notes_for_containers/[Release
47
+ Notes for Containers].
48
+
45
49
For release details related to .NET Core version 2.1, see
46
50
link:https://access.redhat.com/documentation/en-us/net_core/2.1/html/release_notes_for_containers/[Release
47
51
Notes for Containers].
@@ -58,8 +62,8 @@ link:https://access.redhat.com/documentation/en/net-core/1.1/paged/release-notes
58
62
The RHEL 7 images are available through the Red Hat Registry:
59
63
60
64
----
65
+ $ docker pull registry.redhat.io/dotnet/dotnet-22-rhel7
61
66
$ docker pull registry.redhat.io/dotnet/dotnet-21-rhel7
62
- $ docker pull registry.redhat.io/dotnet/dotnet-20-rhel7
63
67
$ docker pull registry.redhat.io/dotnet/dotnetcore-11-rhel7
64
68
$ docker pull registry.redhat.io/dotnet/dotnetcore-10-rhel7
65
69
----
@@ -182,6 +186,11 @@ and all processes that run in the image after the build, including the
182
186
application that was built. The items can be absolute paths starting with `/` or
183
187
paths in the source repository (for example, certificates).
184
188
|
189
+
190
+ |`DOTNET_RESTORE_DISABLE_PARALLEL`
191
+ |When set to `true`, disables restoring multiple projects in parallel. This reduces
192
+ restore timeout errors when the build container is running with low CPU limits.
193
+ |`false`
185
194
|===
186
195
187
196
[[dot-net-quickly-deploy-applications]]
@@ -201,17 +210,17 @@ sample repository:
201
210
202
211
ifdef::openshift-online[]
203
212
----
213
+ $ oc new-app dotnet:2.2~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.2 --context-dir=app
204
214
$ oc new-app dotnet:2.1~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.1 --context-dir=app
205
- $ oc new-app dotnet:2.0~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.0 --context-dir=app
206
215
$ oc new-app dotnet:1.1~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-1.1 --context-dir=app
207
216
$ oc new-app dotnet:1.0~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-1.0 --context-dir=app
208
217
----
209
218
endif::openshift-online[]
210
219
211
220
ifndef::openshift-online[]
212
221
----
222
+ $ oc new-app registry.redhat.io/dotnet/dotnet-22-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.2 --context-dir=app
213
223
$ oc new-app registry.redhat.io/dotnet/dotnet-21-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.1 --context-dir=app
214
- $ oc new-app registry.redhat.io/dotnet/dotnet-20-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.0 --context-dir=app
215
224
$ oc new-app registry.redhat.io/dotnet/dotnetcore-11-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-1.1 --context-dir=app
216
225
$ oc new-app registry.redhat.io/dotnet/dotnetcore-10-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-1.0 --context-dir=app
217
226
----
@@ -246,10 +255,10 @@ endif::openshift-enterprise[]
246
255
deploy a sample application.
247
256
248
257
The link:https://github.com/redhat-developer/s2i-dotnetcore-ex[.NET Core sample
249
- application] running on `dotnet/dotnet-21 -rhel7` can be deployed with:
258
+ application] running on `dotnet/dotnet-22 -rhel7` can be deployed with:
250
259
251
260
----
252
- $ oc new-app --template dotnet-example -p DOTNET_IMAGE_STREAM_TAG=dotnet:2.1 -p SOURCE_REPOSITORY_REF=dotnetcore-2.1
261
+ $ oc new-app --template dotnet-example -p DOTNET_IMAGE_STREAM_TAG=dotnet:2.2 -p SOURCE_REPOSITORY_REF=dotnetcore-2.2
253
262
----
254
263
255
264
The link:https://github.com/redhat-developer/s2i-dotnetcore-ex[.NET Core sample
0 commit comments