Book Image

Learning Windows Server Containers

Book Image

Learning Windows Server Containers

Overview of this book

Windows Server Containers are independent, isolated, manageable and portable application environments which are light weight and shippable. Decomposing your application into smaller manageable components or MicroServices helps in building scalable and distributed application environments. Windows Server Containers have a significant impact on application developers, development operations (DevOps) and infrastructure management teams. Applications can be built, shipped and deployed in a fast-paced manner on an easily manageable and updatable environment. Learning Windows Server Containers teaches you to build simple to advanced production grade container based application using Asp.Net Core, Visual Studio, Azure, Docker and PowerShell technologies. The book teaches you to build and deploy simple web applications as Windows and Hyper-V containers on Windows 10 and Windows Server 2016 on Azure. You will learn to build on top of Windows Container Base OS Images, integrate with existing images from Docker Hub, create custom images and publish to Hub. You will also learn to work with storage containers built using Volumes and SQL Server as container, create and configure custom networks, integrate with Redis Cache containers, configure continuous integration and deployment pipelines using VSTS and Git Repository. Further you can also learn to manage resources for a container, setting up monitoring and diagnostics, deploy composite container environments using Docker Compose on Windows and manage container clusters using Docker Swarm. The last chapter of the book focuses on building applications using Microsoft’s new and thinnest server platform – Nano Servers.
Table of Contents (19 chapters)
Credits
Foreword
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Running web application in Docker


Now let's start creating our first image using the Dockerfiles approach:

  1. Create a folder under C:\ on Windows Server Containers host machine for storing our image artifacts; let's call it learningwsc-chapter2.
  2. Create another folder within learning-chapter2/hellodocker, which will hold the artifacts for our first image.
  3. Open a text editor such as notepad and copy the following contents into the file:
       FROM microsoft/windowsservercore
       MAINTAINER [email protected]
       LABEL Description="IIS" Vendor=Microsoft" Version="10?
       RUN powershell -Command Add-WindowsFeature Web-Server
       COPY index.htm /inetpub/wwwroot/
       EXPOSE 80
       CMD [ "ping localhost -t" ]

 

  1. Save this file as Dockerfile under learningwsc-chapter2/hellodocker.
  2. Make sure the file is saved without any extension.

Note

To save a file without any extensions under Windows, just surround the filename with "". In this example, save the file as "Dockerfile".

  1. Open notepad again and...