Congratulations! You containerized your PoC application and have it running on your Docker POC platform. You should be comfortable deploying the code that you've containerized previously using the process outline. However, it is a good idea to demonstrate how easy it is to update and deploy your PoC application to the cluster.
To demonstrate the update process, try the following:
- Make a small code tweak that will show up in the UI.
- In the src/SignUp.aspx file, change the following:
<div class="jumbotron">
<h1>Play with Docker is the best thing I've ever heard of!</h1>
<p class="lead">Here are my details. Sign me up.</p>
</div>
- Change it to the following:
<div class="jumbotron">
<h1>Play with Docker Enterprise Rocks!</h1...