Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 616 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 616 Bytes

Running on Docker

Build:

    $ docker build . --no-cache

or

    $ docker build .

Start docker with your container tag:

    $ docker run -it -v "$PWD":/home/dummy --env-file env 8de1ffb65323 zsh

Go to mount entry "/home/dummy"

    $ cd /home/dummy

Run examples

    $ make all

Obs a) change the container tag <876b00058d0f> with your created tag (Successfully built XXXXXXXXXXXX) b) $PWD is a linux commant to get the current directory, if you are not familiar with docker mount volues please follow this link.