github.com/iron-io/functions@v0.0.0-20180820112432-d59d7d1c40b2/docs/operating/windows.md (about)

     1  # Running on Windows
     2  
     3  Windows doesn't support Docker in Docker so you'll change the run command to the following:
     4  
     5  ```sh
     6  docker run --rm --name functions -it -v /var/run/docker.sock:/var/run/docker.sock -v ${pwd}/data:/app/data -p 8080:8080 iron/functions
     7  ```
     8  
     9  Then everything should work as normal.