#!/bin/bash set -e docker build \ --tag sia \ . docker run \ --init \ --rm \ -ti \ --gpus=all \ -p 8080:8080 \ --env-file .env \ -v /$(pwd)/model/:/root/model/ \ -v /$(pwd)/iterations/:/root/sia/iterations/ \ sia "$@"