generated from fastai/fastpages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·53 lines (42 loc) · 1.39 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
46
47
48
49
50
51
52
53
help:
cat Makefile
# start (or restart) the services
server: .FORCE
docker-compose down --remove-orphans || true;
docker-compose up
# start (or restart) the services in detached mode
server-detached: .FORCE
docker-compose down || true;
docker-compose up -d
# build or rebuild the services WITHOUT cache
build: .FORCE
chmod 777 Gemfile.lock
docker-compose stop || true; docker-compose rm || true;
docker build --no-cache -t fastai/fastpages-jekyll -f _action_files/fastpages-jekyll.Dockerfile .
docker-compose build --force-rm --no-cache
# rebuild the services WITH cache
quick-build: .FORCE
docker-compose stop || true;
docker build -t fastai/fastpages-jekyll -f _action_files/fastpages-jekyll.Dockerfile .
docker-compose build
# convert word & nb without Jekyll services
convert: .FORCE
docker-compose up converter
# stop all containers
stop: .FORCE
docker-compose stop
docker ps | grep fastpages | awk '{print $1}' | xargs docker stop
# remove all containers
remove: .FORCE
docker-compose stop || true; docker-compose rm || true;
# get shell inside the notebook converter service (Must already be running)
bash-nb: .FORCE
docker-compose exec watcher /bin/bash
# get shell inside jekyll service (Must already be running)
bash-jekyll: .FORCE
docker-compose exec jekyll /bin/bash
# restart just the Jekyll server
restart-jekyll: .FORCE
docker-compose restart jekyll
.FORCE:
chmod -R u+rw .