Abel Sanchez, John Williams

Slides:



Advertisements
Similar presentations
MODULE 3: OS & APP LAYERS. Agenda Preparing and importing a gold image Creating and understanding Install Machines Creating basic Application layers Understanding.
Advertisements

Deployment Adavatages Provisioning time reduced to minutes, not days to weeks! Configure hardware Install OS Configure OS & Tools Assign IP Addr Configure.
Start with a VM. Stuff our application into a single, bloated image.
Build Test Integrat e Deploy Develop Languages Frameworks Cloud and Infra Data platforms.
ProjectWise Virtualization Kevin Boland. What is Virtualization? Virtualization is a technique for deploying technologies. Virtualization creates a level.
To run the program: To run the program: You need the OS: You need the OS:
Microsoft Desktop Virtualization Migrating to Windows 7 With MED-V.
Esri UC 2014 | Demo Theater | Using ArcGIS for Server in the Microsoft Azure Cloud Nikhil Shampur.
System Center 2012 Setup The components of system center App Controller Data Protection Manager Operations Manager Orchestrator Service.
Windows Azure Conference 2014 Running Docker on Windows Azure.
SharePoint 2010 Development Environment A Guide to Setup SharePoint 2010 Development Environment on Windows 7 Machine.
Model a Container Runtime environment on Your Mac with VMware AppCatalyst VMworld Fabio Rapposelli
Performing Software Installation with Group Policy BAI516.
VMs in Azure Breeze Lab Manager 19 November 2012.
Denny Cherry Senior Database Administrator / Architect Awareness Technologies Quest Software SQL Server MVP MCSA, MCDBA, MCTS,
3 TIME IT CAPACITY Actual Load Allocated IT-capacities Too Much Power Not Enough Power Load Forecast.
Windows Azure Enterprise Role ARole B Role C (multiple VM’s) Windows Azure Enterprise Dev machines Databases Relay.
SERVER I SLIDE: 3. SERVER I Topic for tomorrow: Chapter 3: Configuring Hyper-V ■■ Objective 3.1: Create and configure virtual machine settings (Group.
Free, online, technical courses Take a free online course. Microsoft Virtual Academy.
© ExplorNet’s Centers for Quality Teaching and Learning 1 Explain the purpose of Microsoft virtualization. Objective Course Weight 2%
VIRTUAL MACHINE – VMWARE. VIRTUAL MACHINE (VM) What is a VM? – A virtual machine (VM) is a software implementation of a computing environment in which.
Docker for Ops: Operationalize Your Apps in Production Vivek Saraswat Sr. Product Evan Hazlett Sr. Software
Intro to Docker Containers
Let's talk about Linux and Virtualization in 'vLAMP'
INTRO TO Presenter: PhuongNQK.
Containers as a Service with Docker to Extend an Open Platform
Bentley Systems, Incorporated
Docker Birthday #3.
Intro to Docker Containers
Learning about Containers in the Real World
Your OSS Project Is Now Served
Andrew Pruski SQL Server & Containers
Containers in HPC By Raja.
Drupal VM and Docker4Drupal For Drupal Development Platform
Windows Server & Hyper-V Containers Vaggelis Kappas
Microsoft Connect /18/ :32 PM
Hands-On Virtualization in the Classroom
Drupal VM and Docker4Drupal as Consistent Drupal Development Platform
Overview Thursday, September 20, 2018.
Coding in the Cloud This slide deck includes recorded video demonstrations of content from the live presentation. Joon-Yee.
Azhagappan Arunachalam
Chapter 2. Malware Analysis in VMs
Introduction to Docker
PaaS - Development Stefan Geiger Gerry
Oracle DB and Docker Get Your Dockerized Oracle Sandbox Running in the Cloud or On- Premises Martin Knazovicky Dbvisit Software.
Open Source Toolkit for Turn-Key AI Cluster (Introduction)
Intro to Docker Containers and Orchestration in the Cloud
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
Developing for the cloud with Visual Studio
OpenStack-alapú privát felhő üzemeltetés
12/5/ :36 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Microsoft Virtual Academy
1/2/2019 5:18 PM THR3016 Customer stories: Plan and orchestrate large resource deployments on Azure infrastructure Igal Figlin Principal PM Manager – Azure.
Docker, Drupal and Persistence
OpenShift vs. Vanilla k8s on OpenStack IaaS
An introduction to the Linux environment v
Different types of Linux installation
Deploy Software with Group Policy
Virtualization and Persistence
DevOps in action The next level of virtualization
Introduction to Docker
Roots/Git to Deploy What is continuous integration and continuous delivery How they are used at the Innovation Co-Lab Victor Wang, Software Engineer &
OpenStack Summit Berlin – November 14, 2018
Introduction.
Azure Container Service
Container technology, Microservices, and DevOps
Client/Server Computing and Web Technologies
Docker for DBAs SQL Saturday 8/17/2019.
Containers on Azure Peter Lasne Sr. Software Development Engineer
SQL Server on Containers
Presentation transcript:

Abel Sanchez, John Williams CONTAINERS Abel Sanchez, John Williams

Setting Up a Machine is Hard Work

APP SERVERS Installation, setup, configuration, admin DATA STORE Installation, setup, configuration, admin DEPENDENCIES runtimes, languages, packages, configurations PATCHING OS COMPUTER

VM VM

Installation, setup, configuration, admin APP SERVERS DATA STORE runtimes, languages, packages, configurations DEPENDENCIES PATCHING OS VM SOFTWARE vm fusion virtual box

Docker, Why Do We Care? https://www.youtube.com/watch?v=El_XpG4haz0

Container vs. VM

Docker Images Base Image Plus Node Base Image Plus Mongo Base Image

Registry of Images

Every Week: 2 Billion Containers (internally)

Docker Ecosystem

Active Learning

Install Docker https://www.docker.com

Storage The JS stack story vs enterprise computing Slides at http://onexi.org/abel/19_data_stores/slides.html

Docker Exercise #1 al-mongo Steps Node application plus dockerized mongo database https://github.com/onexi/ex-mongo Steps $ docker-compose up $ npm install

Docker Exercise #2 al-mongonode Steps Dockerized node application plus mongo database https://github.com/onexi/ex-mongonode Steps $ docker-compose up

Docker Exercise #3 al-mongoflask Dockerized python, flask application, plus mongo database https://github.com/onexi/ex-mongoflask

Deleting Containers/Images $ docker rm $(docker ps -aq) Deleting images $ docker rmi $(docker images -q)