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
Copy file name to clipboardExpand all lines: README.md
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,19 +93,32 @@ You have three choices when it comes to how you prefer to run the app. You can e
93
93
94
94
> It will take some time during the first run to download all client side dependencies.
95
95
96
-
### 3. Using docker
96
+
Browse to [http://localhost:5000](http://localhost:5000) for ASP.​NET Core + Vue app or browse to [http://localhost:8080](http://localhost:8080) for Vue app only.
97
+
98
+

99
+
100
+
## Publish the application
101
+
102
+
### 1. Folder output
103
+
104
+
* Run the .NET publish command using Release configuration: `dotnet publish -c Release`
105
+
106
+
or
107
+
108
+
* Follow the Publish wizard in Visual Studio selecting Folder profile.
109
+
110
+
### 2. Docker output
97
111
98
112
* Run the following command in a cmd window to build the docker image:
99
113
`docker build -t <IMAGE_NAME> .`
100
114
115
+
> ATTENTION! Do not miss the final dot to build the current directory
116
+
101
117
* Run the application in a cmd window by this command:
102
118
`docker run -d -p 5000:80 <IMAGE_NAME>`
103
119
104
120
## View your application running
105
121
106
-
Browse to [http://localhost:5000](http://localhost:5000) for ASP.​NET Core + Vue app or browse to [http://localhost:8080](http://localhost:8080) for Vue app only.
0 commit comments