Files
SIA/run.sh
2024-11-19 20:24:21 +01:00

16 lines
254 B
Bash
Executable File

#!/bin/bash
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 "$@"