Skip to content

Commit

Permalink
More updates to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
merken committed Sep 10, 2020
1 parent 4d76216 commit cb017e4
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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*
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
```

0 comments on commit cb017e4

Please sign in to comment.