Files
fn-serverless/docs/operating/windows.md
2017-01-02 12:24:17 -08:00

10 lines
301 B
Markdown

# Running on Windows
Windows doesn't support Docker in Docker so you'll change the run command to the following:
```sh
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
```
Then everything should work as normal.