diff --git a/README.md b/README.md index 4142aed..adaaac0 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ ## Getting started 1. Clone this Repo -2. Build the containers +2. Build the containers using docker-compose build ``` -sudo docker-compose build +docker-compose build ``` -3. Run all the containers +3. Run all the containers using docker-compose up ``` -sudo docker-compose up +docker-compose up ``` 4. Create the Azure Storage artifacts Run Azure Storage Explorer and create the following Blob Containers: @@ -22,14 +22,18 @@ Run Azure Storage Explorer and create the following Blob Containers: Create the following queue: - queue -5. Stop the Containers +5. Stop the Containers using docker-compose stop ``` -sudo docker-compose stop +docker-compose stop ``` 6. Run all containers again (required for the Function to hook into the newly create blob containers and queue) ``` -sudo docker-compose up +docker-compose up ``` 7. Try out the HTTP calls from the *http* directory using the [VS Code REST Client extension](https://marketplace.visualstudio.com/items?itemName=humao.rest-client) 8. Add a new message to the *queue* -9. Add a new file to the *input-container* and see the copy inside of the *output-container* \ No newline at end of file +9. Add a new file to the *input-container* and see the copy inside of the *output-container* +10. Cleanup every running container using docker-compose down +``` +docker-compose down +``` \ No newline at end of file