Embed presentation
Downloaded 13 times













![# escape=`
FROM microsoft/windowsservercore
SHELL ["powershell", "-Command"]
RUN Add-WindowsFeature Web-server, `
NET-Framework-45-ASPNET, Web-Asp-Net45; `
Remove-Website -Name 'Default Web Site'
COPY ProductLaunchWeb /product-launch-web
RUN New-Website -Name 'product-launch' `
-PhysicalPath 'C:product-launch-web' -Port 80
EXPOSE 80
COPY bootstrap.ps1 /
ENTRYPOINT ./bootstrap.ps1](https://image.slidesharecdn.com/docker-windows-beginners-guide-170921160633/85/WinOps-2017-Docker-on-Windows-the-Beginner-s-Guide-14-320.jpg)















The document provides a beginner's guide to using Docker on Windows, highlighting its benefits such as efficiency, portability, and security. It includes a demonstration of building and deploying a .NET application using Docker, and contrasts Windows and Linux environments. The guide concludes with resources for further learning and upcoming events.













![# escape=`
FROM microsoft/windowsservercore
SHELL ["powershell", "-Command"]
RUN Add-WindowsFeature Web-server, `
NET-Framework-45-ASPNET, Web-Asp-Net45; `
Remove-Website -Name 'Default Web Site'
COPY ProductLaunchWeb /product-launch-web
RUN New-Website -Name 'product-launch' `
-PhysicalPath 'C:product-launch-web' -Port 80
EXPOSE 80
COPY bootstrap.ps1 /
ENTRYPOINT ./bootstrap.ps1](https://image.slidesharecdn.com/docker-windows-beginners-guide-170921160633/85/WinOps-2017-Docker-on-Windows-the-Beginner-s-Guide-14-320.jpg)













