Auto reload ionic

Hello,

I use image beevelop/ionic

i create a new projet in persitence volume : ok

i launch the projet: ionic serve ok

but the auto reload doesn’t work ,

when i modify a file of my project i need stop and restart my docker project ( .docker/ionic):

autoload no working et refresh F5 or ctrl F5 doesn’t work

Dockerfile for ionic :

FROM beevelop/ionic
EXPOSE 8100


ENTRYPOINT ["ionic"]

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

and docker-compose.yml for my project :


version: "3"

services:

  # Service ionic
  ionic:
    #container_name: ionic
    build:
      context: .docker/ionic
    working_dir: "/myApp"
    volumes:
      - type: bind
        source: .
        target: /myApp
        bind:
          propagation: shared
          
    ports:
      - 80:8100