Sign inSign up

naratipud/angular

By naratipud

Updated over 6 years ago

This is an image to build a container for Angular workspace.

Image
0

273

naratipud/angular repository overview

Angular - Docker

Docker Cloud Automated build Docker Cloud Build Status

This is an image to build a container for Angular workspace.

Quick Start

Pull image from Docker hub

docker pull naratipud/angular

Running

docker run -it -d -p 4201:4200 -v /path/to/project:/usr/src/app naratipud/angular yarn start

Docker Compose

create docker-compose.yml file.

version: '3'
services:
  web:
    image: naratipud/angular
    volumes:
      - /path/to/project:/usr/src/app
    ports:
      - 4201:4200
    command: ['yarn', 'start']

Running Docker Compose command.

docker-compose up -d

Tag summary

Content type

Image

Digest

Size

49.5 MB

Last updated

over 6 years ago

docker pull naratipud/angular