Windows Container with R, Dockerfiles at https://github.com/nuest/rocker-win
10K+
Explorations into running R in Windows Containers with Docker for Windows.
It provides images based on microsoft/windowsservercore and microsoft/nanoserver.
docker run --rm -it nuest/rocker-win
# get a powershell in the container
docker run --rm -it nuest/rocker-win powershell.exe
# run Rscript
docker run --rm -it nuest/rocker-win Rscript.exe -e "1+1"
The images include micro as a terminal-based text editor, see its commands when you want to edit some files within the container.
git clone https://github.com/nuest/rocker-win
cd rocker-win
docker build --tag rocker-win:3.4.3 rocker-win:latest --file 3.4.3/Dockerfile .
docker build --tag rocker-win:3.4.3-nano --tag rocker-win:nano --tag rocker-win:nano-latest --file 3.4.3-nano/Dockerfile .
Contributions in this repository are published under MIT license (see file LICENSE).
See file C:\license.txt in the container for the Microsoft images and container license/EULA.
Content type
Image
Digest
Size
2.3 GB
Last updated
over 6 years ago
docker pull nuest/rocker-win