Blazor in a container for easier deployment

preview_player
Показать описание
.NET and various tooling provide support for getting your Blazor application deployed in a container and out to the cloud very quickly. We're going to start on our new project and get it deployed as we work towards getting the continuous integration in place.

This is not required. The Docker Engine works fine. Many people new to Docker or just like to have convenience tooling use this.

Рекомендации по теме
Комментарии
Автор

Thanks a lot for this. Around 37:22 we can see how docker extension is doing everything for us thanks to using the Debugger inside vscode, what I'm struggling to understand - and I would really appreaciate your help here - is how can I achieve the same via the command line?

I tried `docker build -t name .` and then I tried `docker run -p 8080:80 name` and I couldn't reach my page using localhost:8080 ????

Appreciate it might be impossible to debug via a youtube comment, but any pointers would be amazing for me to understand the whole thing end to end (currently it's working using vscode, but honestly curious about what I could do to make it run via the command line)

pliyo