Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 826 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 826 Bytes

binder-template

Binder

This is a template repo for running robotics research Jupyter Notebooks on Binderhub.

Tutorials can be found here: https://vib.ai.uni-bremen.de/page/softwaretools/cloud-based-robotics-platform#zero-to-binder

Development

Run and build docker image Locally (Under repo directory)

  • To make the current directory writable inside the container:

    chmod -R g+w ./
  • Build and run docker image:

    export GID=$(id -g) && \
    docker compose -f ./binder/docker-compose.yml up --build
  • Open Web browser and go to http://localhost:8888/

  • To stop and remove container:

    docker compose -f ./binder/docker-compose.yml down