forked from Sudashiii/Sake
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjustfile
More file actions
28 lines (19 loc) · 748 Bytes
/
justfile
File metadata and controls
28 lines (19 loc) · 748 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
set shell := ["bash", "-eu", "-o", "pipefail", "-c"]
default:
@just --list
docker-up:
docker compose -f docker-compose.yaml up --build
docker-down:
docker compose -f docker-compose.yaml down
selfhost-up:
docker compose -f docker-compose.selfhost.yaml up --build
selfhost-down:
docker compose -f docker-compose.selfhost.yaml down
docker-up-prebuilt:
docker compose -f docker-examples/docker-compose.prebuilt.yaml up
docker-down-prebuilt:
docker compose -f docker-examples/docker-compose.prebuilt.yaml down
selfhost-up-prebuilt:
docker compose -f docker-examples/docker-compose.prebuilt.selfhost.yaml up
selfhost-down-prebuilt:
docker compose -f docker-examples/docker-compose.prebuilt.selfhost.yaml down