This is an image to build a container for Angular workspace.
273
This is an image to build a container for Angular workspace.
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
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
Content type
Image
Digest
Size
49.5 MB
Last updated
over 6 years ago
docker pull naratipud/angular