Skip to content

Latest commit

 

History

History

README.org

Docker instructions

Build and run container

In the examples below Tadashi is build in /tadashi, while the root of the repo (on the host) is available at /workdir inside the container.

Using docker-compose

docker compose build tadashi

docker compose run --rm -it tadashi

If you don’t have (an up to date) docker-compose

Build the container with:

docker build -f tadashi.dockerfile -t tadashi .

docker run --rm -it -v$(pwd)/../..:/workdir tadashi

Development notes

Tadashi can be rebuild in the host repo (from within docker) like this:

mkdir /workdir/build
cd /workdir/build
cmake ..
cmake --build .