11 lines
164 B
Makefile
11 lines
164 B
Makefile
image:
|
|
docker build --pull -t localhost/archiver .
|
|
|
|
clean:
|
|
docker rmi localhost/archiver
|
|
|
|
dump:
|
|
mkdir -p dumps
|
|
cd dumps && bash ../dump.sh
|
|
|
|
.PHONY: image clean
|