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
+ PREFIX ?= pathwar/
2
+ PATHWAR_OPTS ?=
3
+
4
+ .PHONY : pathwar.run
5
+ pathwar.run :
6
+ pathwar $(PATHWAR_OPTS ) compose prepare --no-push ./ > pathwar-compose.yml
7
+ pathwar $(PATHWAR_OPTS ) compose up --force-recreate pathwar-compose.yml
8
+
9
+ .PHONY : pathwar.down
10
+ pathwar.down :
11
+ pathwar --debug compose down $(notdir $(PWD ) )
12
+
13
+ .PHONY : pathwar.ps
14
+ pathwar.ps :
15
+ pathwar compose ps | grep $(notdir $(PWD ) )
16
+
17
+ .PHONY : docker.build
18
+ docker.build :
19
+ docker-compose build --pull
20
+
21
+ .PHONY : pathwar-prepare
22
+ pathwar.prepare :
23
+ pathwar $(PATHWAR_OPTS ) compose prepare --prefix=$(PREFIX ) --no-push .
24
+
25
+ .PHONY : pathwar-push
26
+ pathwar.push :
27
+ pathwar $(PATHWAR_OPTS ) compose prepare --prefix=$(PREFIX ) .
28
+
29
+ .PHONY : make.bump
30
+ make.bump :
31
+ wget -O Makefile https://raw.githubusercontent.com/pathwar/pathwar/master/challenges/challenge.mk
You can’t perform that action at this time.
0 commit comments