Skip to content

Commit

Permalink
API-1821 add run docker to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanmartins committed Dec 6, 2023
1 parent 476812b commit 1d31e37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ typehint:
executeSdkSample:
docker-compose exec bynder-python-sdk python /app/samples/$(sample-file-name)

.PHONY: run-docker
run-docker:
docker-compose up -d

.PHONY: stop-docker
stop-docker:
docker-compose down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ Create a `secret.json` file by following the example provided in the project. Fi

With `docker` and `docker-compose` installed, and your `secret.json` file ready, run the following command to initiate the container:
```bash
docker-compose up -d
make run-docker
```
This command initializes a container with the bynder-python-sdk installed and ready for use.

Expand Down

0 comments on commit 1d31e37

Please sign in to comment.