Are docker volumes case insensitive in windows?

I have created a docker compose file and setup a volume via

volumes:
      - ./www:/var/www/html

I ran into an issue yesterday where I pushed some php code to our production setup due to a file name casing issue. Autoload.php (wrong) vs autoload.php (correct).

Is there a way to get this volume to be case sensitive inside the docker container?