Docker and node red on Windows Subsystem for Linux (WSL)

Hello
Following is my setup

  1. I have a windows box in which I have installed WSL. So I can create bash shell and work as though I am working in a linux box.
  2. I am running a docker toolbox on a Oracle VirtualBox in the same machine
  3. Now from my linux bash shell I am able to run node-red and connect from my google chrome browser in the windows box without any problem.
  4. Now I have created some nodes (for node-red) on my own and I want to install it in my container.
  5. So I did a $docker exec -it /bin/bash
  6. The problem here is that I am unable to install my own nodes because I am not a root. And sudo command does not work.

How do I get the root permission on my container instance? Or is there something special I need to do to get a container that could run a shell as a root user?
Thanks
Sai