Using Docker#

Login into the eyeontext docker repository

docker login https://docker.eyeontext.com -u partners

You will be asked for the ‘partners’ password, we will gladly give it to you. Email : info@eyeontext.com

Run the docker container and share a folder from the host OS.

docker run -v [folder]:/shared/ -it docker.eyeontext.com/eot/sdk:latest bash

Note

[folder] should be the full path of the folder you want to share from your host inside the container

Unix#

docker run -v `pwd`:/eotws/ -it docker.eyeontext.com/eot/sdk:latest bash

MacOS M1#

MacOS M1: Add the platform to avoid a warning : –platform=linux/amd64

docker run --platform=linux/amd64 -v `pwd`:/eotws/ -it docker.eyeontext.com/eot/sdk:latest bash

Windows#

docker run -v C:\eotws:/eotws/ -it docker.eyeontext.com/eot/sdk:latest bash