Docker container not hot-reloading Angular
问题 I'm configuring a dockerized Angular app but when i modify something, the page does not refresh automatically as it does on my local setup. Based on this: Docker container doesn't reload Angular app I should expose port 49153 but this does not work. Here's my configuration: Dockerfile FROM node:14-slim RUN npm install @angular/cli@latest -g RUN mkdir -p /home/boilerplate WORKDIR /home/boilerplate EXPOSE 4200 49153 CMD ng serve --port 4200 --poll 1 docker-compose.yaml version: "3" services: