Hands on: Docker containers. Rational and a tutorial walk through.


Details
Hello!
and welcome to another hands-on session at Babbel. We are very happy that Amit Kothiyal and Evgeny Savin, two Data Scientists at Smava, will join us! They use Docker to deploy Machine Learning models in Smava's production environment.
DockeR
*****************************
Amit and Evgeny will explain the importance of using containerization particularly when using machine learning models on production and walk us through the creation of a Docker container.
Our speakers
*****************************
Amit holds a PhD from Erasmus University Rotterdam and has worked as a Research Scientist in Max Plank Institute Berlin before joining Smava.
Evgeny has an MsC degree from HU University Berlin and has worked as a data scientist in a number of commercial organisations in Berlin.
Further Info
*****************************
- any other questions regarding R in general
- you would like give a presentation
- you know of an R package that you would like to be introduced by us
--> please drop us a line at berlin@rladies.org
We are looking forward to see you soon!
Best
R-Ladies Berlin organisation team
*********************************************************************************
Set-up your machine to join the hands-on part:
- (4 minutes) install and set-up docker: https://docs.docker.com/get-started/
- (10 minutes) pull r-base https://hub.docker.com/_/r-base $ docker pull r-base
- docker cheat sheet: https//www.docker.com/sites/default/files/Docker_CheatSheet_08.09.2016_0.pdf
- workshop
** pull an existing image and use it
*** pull
docker-hub: https://hub.docker.com/
docker pull r-base:3.1.3
docker images r-base # images that were pulled
*** launch
# interactive
$ docker run -ti --rm r-base
$ docker run -ti --rm r-base:3.1.3
# bash session
$ docker run -ti --rm r-base /bin/bash
# linking pwd
$ docker run -it --rm -v "$PWD":/data r-base /bin/bash
** develop your own image
$ docker build -t my_first_image .
$ docker run -ti --rm my_first_image
$ docker image rm my_fist_image
** publish it in registery
*********************************************************************************

Sponsors
Hands on: Docker containers. Rational and a tutorial walk through.