Angular 2 is a JavaScript framework for building mobile and desktop applications
1.3K
Simple Angular 2 setup based on Node.js, including the QuickStart example from the official Angular.io website.
The image is based on the Node.js image (FROM node:7)
The default exposed port for node.js is 3000 (EXPOSE 3000)
The angular app is mounted at /usr/src/angular-app
Simply run the image within docker using:
docker run -dit \
--name simple-angular2 \
-p 8080:3000 \
flockowak/angular2:latest
The Angular application should be available in the browser at localhost:8080
Content type
Image
Digest
Size
277.7 MB
Last updated
almost 10 years ago
docker pull flockowak/angular2