This is a image to build a container for angular-cli with
To pull from docker hub:
$ docker pull pipekung/angular
To simply run the container:
$ docker run -it -d -p 4200:4200 -v /path/to/project:/usr/src/app pipekung/angular yarn start
docker stack deploy or docker-composeCreate file stack.yml or docker-compose.yml
version: "3.1"
services:
app:
image: pipekung/angular
volumes:
- /path/to/project:/usr/src/app
ports:
- 4200:4200
command: yarn start
Run docker stack deploy:
$ docker stack deploy -c stack.yml angular
or docker-compose:
$ docker-compose up -d
Content type
Image
Digest
sha256:e5e26ee5d…
Size
74.9 MB
Last updated
almost 4 years ago
docker pull pipekung/angular