Skip to content

Commit 60ee58e

Browse files
committed
Enable incremental builds in docker-compose.yml
Because regenerating the whole thing is too slow.
1 parent ce50b2a commit 60ee58e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docker-compose.yml

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
services:
44
jekyll:
55
image: bretfisher/jekyll-serve
6+
# Add --incremental to the commandline
7+
# https://github.com/BretFisher/jekyll-serve/blob/2119a31476e1c6004a4bea4739b9160fc73e7bda/Dockerfile#L27C5-L27C94
8+
command: [ "bundle", "exec", "jekyll", "serve", "--force_polling", "-H", "0.0.0.0", "-P", "4000", "--incremental" ]
69
volumes:
710
- .:/site
811
ports:

0 commit comments

Comments
 (0)