UBC-MDS / DSCI_522_Group304

DSCI 522 Group 304 Project - Are There Differences in FSA Scores Between Subgroups?
MIT License
0 stars 5 forks source link

Milestone 4 - Make your project reproducible (to the max) with Docker #90

Closed zouwenjiao closed 4 years ago

zouwenjiao commented 4 years ago

To run this analysis using Docker, clone/download this repository, use the command line to navigate to the root of this project on your computer, and then type the following (filling in PATH_ON_YOUR_COMPUTER with the absolute path to the root of this project on your computer).

docker run --rm -v PATH_ON_YOUR_COMPUTER:/home/data_analysis_eg ttimbers/data_analysis_pipeline_eg make -C '/home/data_analysis_eg' all

To clean up the analysis type:

docker run --rm -v PATH_ON_YOUR_COMPUTER:/home/data_analysis_eg ttimbers/data_analysis_pipeline_eg make -C '/home/data_analysis_eg' clean

annychih commented 4 years ago

Done! :)

I checked that the Dockerfile ran locally (both after each package was added, and then all together by running the full Dockerfile), then checked that the Docker image was successfully built in DockerHub, and then checked the docker commands that I added to the README.

All checks passed!