5.9 KiB
title | linkTitle | weight | keywords | description |
---|---|---|---|---|
Use containers for Angular development | Develop your app | 30 | angular, development, node | Learn how to develop your Angular application locally using containers. |
Prerequisites
Complete Containerize Angular application.
Overview
In this section, you'll learn how to set up both production and development environments for your containerized Angular application using Docker Compose. This setup allows you to serve a static production build via Nginx and to develop efficiently inside containers using a live-reloading dev server with Compose Watch.
You’ll learn how to:
- Configure separate containers for production and development
- Enable automatic file syncing using Compose Watch in development
- Debug and live-preview your changes in real-time without manual rebuilds
Automatically update services (Development Mode)
Use Compose Watch to automatically sync source file changes into your containerized development environment. This provides a seamless, efficient development experience without restarting or rebuilding containers manually.
Step 1: Create a development Dockerfile
Create a file named Dockerfile.dev
in your project root with the following content:
# =========================================
# Stage 1: Development - Angular Application
# =========================================
# Define the Node.js version to use (Alpine for a small footprint)
ARG NODE_VERSION=22.14.0-alpine
# Set the base image for development
FROM node:${NODE_VERSION} AS dev
# Set environment variable to indicate development mode
ENV NODE_ENV=development
# Set the working directory inside the container
WORKDIR /app
# Copy only the dependency files first to optimize Docker caching
COPY package.json package-lock.json ./
# Install dependencies using npm with caching to speed up subsequent builds
RUN --mount=type=cache,target=/root/.npm npm ci
# Copy all application source files into the container
COPY . .
# Expose the port Angular uses for the dev server (default is 4200)
EXPOSE 4200
# Start the Angular dev server and bind it to all network interfaces
CMD ["npm", "start", "--", "--host=0.0.0.0"]
This file sets up a lightweight development environment for your Angular application using the dev server.
Step 2: Update your compose.yaml
file
Open your compose.yaml
file and define two services: one for production (angular-prod
) and one for development (angular-dev
).
Here’s an example configuration for an Angular application:
services:
angular-prod:
build:
context: .
dockerfile: Dockerfile
image: docker-angular-sample
ports:
- "8080:8080"
angular-dev:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "4200:4200"
develop:
watch:
- action: sync
path: .
target: /app
- The
angular-prod
service builds and serves your static production app using Nginx. - The
angular-dev
service runs your Angular development server with live reload and hot module replacement. watch
triggers file sync with Compose Watch.
[!NOTE] For more details, see the official guide: Use Compose Watch.
After completing the previous steps, your project directory should now contain the following files:
├── docker-angular-sample/
│ ├── Dockerfile
│ ├── Dockerfile.dev
│ ├── .dockerignore
│ ├── compose.yaml
│ ├── nginx.conf
│ └── README.Docker.md
Step 4: Start Compose Watch
Run the following command from the project root to start the container in watch mode
$ docker compose watch angular-dev
Step 5: Test Compose Watch with Angular
To verify that Compose Watch is working correctly:
-
Open the
src/app/app.component.html
file in your text editor. -
Locate the following line:
<h1>Docker Angular Sample Application</h1>
-
Change it to:
<h1>Hello from Docker Compose Watch</h1>
-
Save the file.
-
Open your browser at http://localhost:4200.
You should see the updated text appear instantly, without needing to rebuild the container manually. This confirms that file watching and automatic synchronization are working as expected.
Summary
In this section, you set up a complete development and production workflow for your Angular application using Docker and Docker Compose.
Here’s what you accomplished:
- Created a
Dockerfile.dev
to streamline local development with hot reloading - Defined separate
angular-dev
andangular-prod
services in yourcompose.yaml
file - Enabled real-time file syncing using Compose Watch for a smoother development experience
- Verified that live updates work seamlessly by modifying and previewing a component
With this setup, you're now equipped to build, run, and iterate on your Angular app entirely within containers—efficiently and consistently across environments.
Related resources
Deepen your knowledge and improve your containerized development workflow with these guides:
- Using Compose Watch – Automatically sync source changes during development
- Multi-stage builds – Create efficient, production-ready Docker images
- Dockerfile best practices – Write clean, secure, and optimized Dockerfiles.
- Compose file reference – Learn the full syntax and options available for configuring services in
compose.yaml
. - Docker volumes – Persist and manage data between container runs
Next steps
In the next section, you'll learn how to run unit tests for your Angular application inside Docker containers. This ensures consistent testing across all environments and removes dependencies on local machine setup.