azure-functions-docker/README.adoc

658 B

<html lang="en"> <head> </head>

Azure Functions Container

This is a Docker container to make running Azure Functions Core Tools easier.

docker pull rtyler/azure-functions

Running

The easiest way to run an app is to change to the directory where your Azure Function app lives and run:

docker run --net host --rm -ti -v $PWD:$PWD -w $PWD rtyler/azure-functions func start
In action
</html>