Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 809 Bytes

docker.md

File metadata and controls

23 lines (19 loc) · 809 Bytes

Docker Container

  1. Install docker engine https://docs.docker.com
  2. run
docker run --rm -p 7000:7000 -p 8888:8888 \
-v summer-school:/home/student \
-it memoryofmotion/summer-school
  1. And open the link with 127.0.0.1 in your web browser. You can then run ~/load_talos.ipynb to say hi to Talos!
  2. Notebooks for the tutorials are in ~/summer-school/tutorials.

Update the notebooks

The VirtualBox or Docker images might not contain the latest version of the notebooks so please pull the latest modifications before the tutorials. To do that :

  1. run
docker run --rm -v summer-school:/home/student \
-it memoryofmotion/summer-school \
git -C summer-school pull --rebase \
--recurse-submodules --ff-only