Giter VIP home page Giter VIP logo

docker-r-starter's Introduction

Docker image basic R image

Purpose

Many R replication packages have dependencies, which sometimes include the specific version of R (in particular before/after release of v4). This Docker image is meant to isolate and stabilize that environment, and should be portable across multiple operating system, as long as Docker is available.

Build

Adjust the needed packages

See the setup.R file, and update accordingly.

WARNING: not all packages might build, depending on whether the R base image has the relevant libraries. You might want to change R base image, or switch to another image from rocker.

Setup info

Set the TAG and IMAGEID accordingly.

TAG=v$(date +%F)
MYIMG=aer-9999-8888
MYHUBID=aeadataeditor

Build the image

docker build  . -t $MYIMG:$TAG

or if using the newer build system

DOCKER_BUILDKIT=1 docker build . -t $MYIMG:$TAG

Publish the image

The resulting docker image can be uploaded to Docker Hub, if desired.

docker push $MYHUBID/${MYIMG}:$TAG

Using the image

If using a pre-built image on Docker Hub:

docker run -it --rm $MYHUBID/${MYIMG}:$TAG

If using the image you just created:

docker run -it --rm $MYHUBID/${MYIMG}:$TAG

Somewhat more sophisticated, if you are in a project directory (for instance, the replication package you just downloaded), you can access it directly within the image as follows:

docker run -it --rm -v $(pwd)/subdir:/code -w /code $MYHUBID/${MYIMG}:$TAG

You can now start to run code.

NOTE

This entire process could be automated, using Travis-CI or Github Actions. Not done yet.

docker-r-starter's People

Contributors

larsvilhuber avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.