1default: 2 docker build . -t docker.io/haiku/bootstrap 3clean: 4 docker ps -q --filter=ancestor=docker.io/haiku/bootstrap | xargs -I {} docker kill {} 5 docker ps -a -q --filter=ancestor=docker.io/haiku/bootstrap | xargs -I {} docker rm {} 6 docker volume rm bootstrap_work 7init: 8 docker run -v bootstrap_work:/work docker.io/haiku/bootstrap prep 9crosstools: 10 docker run -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work docker.io/haiku/bootstrap crosstools 11bootstrap: 12 docker run -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work docker.io/haiku/bootstrap bootstrap 13enter: 14 docker run -it -e TARGET_ARCH=$(TARGET_ARCH) -v bootstrap_work:/work docker.io/haiku/bootstrap /bin/bash -l 15