mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
10 lines
304 B
Markdown
10 lines
304 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 treeder/functions
|
|
```
|
|
|
|
Then everything should work as normal.
|