This project shows several core features of Angular including:
- Components
- Data Binding
- Communication between components
- Services
- Routing
-
Install the Angular CLI
npm install -g @angular/cli
-
Run
npm install
at the root of this project -
Run
ng serve -o
-
Install the Angular CLI
npm install -g @angular/cli
-
Run
npm install
at the root of this project -
Build the project
ng build
-
Ensure that you have volumes (file sharing) enabled in the Docker Desktop settings.
-
Note that this build puts the build files directly in the
dist
folder. If yourangular.json
file in your own custom project puts them in a subfolder such asdist/your-project-folder
then you'll need to update thedocker-compose.yml
file. In that case you'd change:volumes: - ./dist:/usr/share/nginx/html
To:
volumes: - ./dist/your-project-folder:/usr/share/nginx/html
-
Run
docker-compose build
-
Run
docker-compose up
-
Visit
http://localhost
-
Run
docker-compose -f docker-compose.prod.yml [build | up]
. This uses a multi-stage Docker build process to create the nginx image for the Angular app.Note: This project build puts the Angular build files directly in the
dist
folder. If yourangular.json
file in your own custom project puts them in a subfolder such asdist/your-project-folder
then you'll need to updatenginx.prod.dockerfile
with the appropriate path. You'd need to update this instruction:COPY --from=node /app/dist /usr/share/nginx/html
To:
COPY --from=node /app/dist/your-project-folder /usr/share/nginx/html