-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
30 lines (24 loc) · 757 Bytes
/
Taskfile.yml
File metadata and controls
30 lines (24 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version: '3'
tasks:
run_dev:
desc: Run the person detection system
cmds:
- docker compose -f docker-compose.dev.yml up
build_dev:
desc: Build the person detection system
cmds:
- docker compose -f docker-compose.dev.yml up --build
run_prod:
desc: Run the person detection system
cmds:
- docker compose -f docker-compose.prod.yml up
build_prod:
desc: Build the person detection system
cmds:
- docker compose -f docker-compose.prod.yml up --build
clean:
desc: Clean up temporary files, artifacts, and stop all running containers
cmds:
- docker compose -f docker-compose.dev.yml down
- docker compose -f docker-compose.prod.yml down
- docker system prune -f