Ionic auto reload

Hello,

I have a project with image beevelop/ionic
it’s work in my browser
but the auto reload doesn’t work
when i modify a file in my projetct, I need restart my container

My dockerfile for ionic:


FROM beevelop/ionic
EXPOSE 8100


ENTRYPOINT ["ionic"]

CMD ["serve", "--external", "--no-open]

My docker-compose .yml :

version: "3"

services:

  # Service ionic
  ionic:
    #container_name: ionic
    build:
      context: .docker/ionic
    working_dir: "/myApp"
    volumes:
      - ./:/myApp
    ports:
      - 80:8100