We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b99ccc6 commit ef88f9fCopy full SHA for ef88f9f
justfile
@@ -1,10 +1,13 @@
1
default: fullbuild
2
3
-container:
4
- devcontainer up --workspace-folder .
+container-build:
+ devcontainer --workspace-folder . build
5
6
-shell: container
7
- devcontainer exec --workspace-folder . bash
+container-up:
+ devcontainer --workspace-folder . up
8
9
-fullbuild: container
10
- devcontainer exec --workspace-folder . bin/fullbuild
+shell: container-up
+ devcontainer --workspace-folder . exec bash
11
+
12
+fullbuild: container-up
13
+ devcontainer --workspace-folder . exec fullbuild
0 commit comments