Docker Image with Matlab Compiler Runtime
This image is used to inject code via SSH and execute Matlab scripts on medical images inside a shielded environment. It runs Ubuntu 12.04 and MCR 2013b.
Replace id_rsa.pub
with with your public key.
git clone https://github.com/QMROCT/matlab-docker
cd matlab-docker
docker build -t matlab-image .
docker run -d -P --name matlab-container matlab-image
PORT=`docker port matlab-container 22 | cut -d: -f2`
IP=`ifconfig docker0 | grep 'inet addr:' | cut -d: -f2 | awk '{print $1}'`
ssh root@$IP -p $PORT
This repo is based on docker-matlab-mcr.