Skip to content

Commit

Permalink
Merge pull request #82 from jianridine/main
Browse files Browse the repository at this point in the history
fix typo on docker cmd
  • Loading branch information
jianructose authored Dec 13, 2020
2 parents 5b03f2e + 28df060 commit 48ca434
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ docker pull vigneshrajakumar/wine_predictor
```

```bash
docker run --rm -p 8787:8787 -e PASSWORD="test" -v $(pwd):/home/data-analysis -it vigneshrajakumar/wine_predictor make -C "home/data-analysis/" all
docker run --rm -p 8787:8787 -e PASSWORD="test" -v /$(pwd):/home/data-analysis -it vigneshrajakumar/wine_predictor make -C "home/data-analysis/" all
```

To reset the repo to a clean state, run the following from the root directory of the project:

```bash
docker run --rm -p 8787:8787 -e PASSWORD="test" -v $(pwd):/home/data-analysis -it vigneshrajakumar/wine_predictor make -C "home/data-analysis/" clean
docker run --rm -p 8787:8787 -e PASSWORD="test" -v /$(pwd):/home/data-analysis -it vigneshrajakumar/wine_predictor make -C "home/data-analysis/" clean
```

#### Dependency Diagram of the Makefile
Expand Down

0 comments on commit 48ca434

Please sign in to comment.