Skip to content

tilburgsciencehub/docker-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Reproducible Docker Workflow for Empirical Research Projects

This is an example repository for the reproducible docker workflow tutorial, available at Tilburg Science Hub.

Running instructions

  • Install Docker
  • Clone this repository: git clone https://github.com/tilburgsciencehub/docker-demo
  • Build the docker image: docker build -t myname/myimage .
  • Run the docker image: docker run -it --rm -v "$(pwd)/.:/docker_rpy" myname/myimage

Warning: Usually, you could run docker containers simply by using docker run. However, without the argument -v, the docker image will not be able to save any of the generated files (e.g., datasets, analysis output) on the computer.

Follow the Docker tutorial for empirical research projects on Tilburg Science Hub now.