forked from Kurrawong/bgs-prez-ui-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
45 lines (36 loc) · 1 KB
/
Taskfile.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# https://taskfile.dev
version: "3"
tasks:
stack:build:
cmds:
- docker-compose --progress plain --profile stack build
stack:up:
desc: Start the Prez stack.
cmds:
- docker-compose --profile stack up -d
stack:down:
desc: Stop the Prez stack.
cmds:
- docker-compose --profile stack down
stack:prez:up:
desc: Start the Prez service in the Prez stack.
cmds:
- docker-compose --profile prez up -d
stack:prez:down:
desc: Stop the Prez service in the Prez stack.
cmds:
- docker-compose --profile prez down
stack:ui:up:
desc: Start the Prez UI service in the Prez stack.
cmds:
- docker-compose --profile ui up -d
stack:ui:down:
desc: Stop the Prez UI service in the Prez stack.
cmds:
- docker-compose --profile ui down
stack:ui:rebuild:
desc: Build prez-ui, stop it and start it again.
cmds:
- docker-compose build prez-ui
- docker-compose stop prez-ui
- docker-compose --profile ui up -d