https://github.com/nader-elganteery/dockerizeangularapp
A simple Angular application demonstrating Docker containerization with NGINX web server.
https://github.com/nader-elganteery/dockerizeangularapp
angular docker nginx typescript
Last synced: about 2 months ago
JSON representation
A simple Angular application demonstrating Docker containerization with NGINX web server.
- Host: GitHub
- URL: https://github.com/nader-elganteery/dockerizeangularapp
- Owner: Nader-Elganteery
- Created: 2025-09-09T21:36:56.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-09-09T21:47:47.000Z (10 months ago)
- Last Synced: 2025-09-10T01:06:22.934Z (10 months ago)
- Topics: angular, docker, nginx, typescript
- Language: HTML
- Homepage:
- Size: 90.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DockerizeAngularApp
A simple Angular application demonstrating how to containerize an Angular app with Docker.
## About
This project contains a basic Angular application (built with Angular CLI 20.1.0) that has been configured to run in a Docker container using NGINX as the web server.
## Docker Setup
### Build the Docker Image
```bash
docker build -t dockerize-angular-app .
```
### Run the Container
```bash
docker run -d -p 4200:8080 --name helpdesk dockerize-angular-app
```
The application will be available at `http://localhost:4200`
### Stop the Container
```bash
# Find the container ID
docker ps
# Stop the container
docker stop
```
## Local Development
For local development without Docker:
```bash
npm install
ng serve
```
Open `http://localhost:4200` in your browser.