-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
45 lines (32 loc) · 1.01 KB
/
Makefile
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
VERSION=$(shell head -1 VERSION)
CM=$(shell dirname `pwd`)
######################################################################
# DOCKER
######################################################################
#--no-cache=true
image:
time docker build -t cyberaide/text:${VERSION} -t cyberaide/text:latest .
#
# cm munts all parent directories into the container
#
cm:
docker run -v $(CM):/cm -w /cm --rm -it cyberaide/text:${VERSION} /bin/bash
wincm:
winpty docker run -v $(CM):/cm -w /cm --rm -it cyberaide/text:${VERSION} /bin/bash
shell:
docker run --rm -it cyberaide/text:${VERSION} /bin/bash
cms:
docker run --rm -it cyberaide/text:${VERSION}
dockerclean:
-docker kill $$(docker ps -q) --force
-docker rm $$(docker ps -a -q) --force
-docker rmi $$(docker images -q) --force
push:
docker push cyberaide/text:${VERSION}
docker push cyberaide/text:latest
run:
docker run cyberaide/text:${VERSION} /bin/sh -c "pwd"
hugo:
docker run cyberaide/text:${VERSION} /bin/sh -c "hugo --minify"
clean:
echo "TBD"