Files
SIA/run.sh
2024-11-22 15:05:54 +01:00

18 lines
262 B
Bash
Executable File

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