File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ .PHONY : help build up down shell test-trained test-pretrained clean
2+
3+ help :
4+ @echo " make build - Build Docker image"
5+ @echo " make up - Start services"
6+ @echo " make down - Stop services"
7+ @echo " make shell - Interactive shell"
8+ @echo " make test-trained - Run trained model test"
9+ @echo " make test-pretrained - Run pretrained model test"
10+ @echo " make clean - Remove volumes"
11+
12+ build :
13+ docker compose build
14+
15+ up :
16+ docker compose up -d
17+
18+ down :
19+ docker compose down
20+
21+ shell :
22+ docker compose run --rm client -i
23+
24+ test-trained :
25+ docker compose run --rm client -c " python test_trained_inference.py"
26+
27+ test-pretrained :
28+ docker compose run --rm client -c " python test_video_inference.py superanimal_quadruped"
29+
30+ clean :
31+ docker compose down -v
You can’t perform that action at this time.
0 commit comments