$ whoami

// Creating a blueprint
class Person { 
    constructor(firstName, lastName) {
    	this.firstName = firstName;
        this.lastName = lastName;
    }
  
    fullName() {
      console.log(`${this.firstName} ${this.lastName}`);
    }
}

const batman = new Person('Bruce', 'Wayne');

const robin = new Person('Dick', 'Grayson');

$ docker run

Image

Container

$ docker pull

$ docker run

$ docker run

Registry

Image

$ docker build

Dockerfile

Image

What we will accomplish

  • Angular app development with Docker
  • Angular app deployment with Docker

Pre-requisites

  • Docker CE installed on your machine
  • NodeJS installed
  • Angular CLI installed

This is a follow along workshop, so code with me

Slides

Containerizing Angular with Docker

By Mohammad Umair Khan

Containerizing Angular with Docker

Presentation for NgSL Conf Containerizing Angular applications with Docker

  • 460