All Projects → hadley → docker

hadley / docker

Licence: other
My personal dockerfiles

Docker containers

This is my docker container. There are many like it, but this one is mine.

My container is my best friend. It is my life. I must master it as I must master my life.

These docker containers are adaptations of the rocker containers, customised for my development workflow.

To build

# If on mac:
docker-machine start default
eval "$(docker-machine env default)"

docker pull r-base # ensure we have latest base image
docker build -t hadley/rdevel .

To use

cd /package/dir

docker run -ti --rm \
  -v $(pwd):/mnt \
  hadley/rdevel /bin/bash

cd /mnt
R
install_deps(dep = T)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].