Files
SIA/run.sh
2024-11-04 17:08:52 +01:00

15 lines
204 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 \
sia "$@"