File tree Expand file tree Collapse file tree 7 files changed +19
-11
lines changed
Expand file tree Collapse file tree 7 files changed +19
-11
lines changed Original file line number Diff line number Diff line change 11from nginx
2- copy site / /usr/share/nginx/html
2+ copy _site / /usr/share/nginx/html
Original file line number Diff line number Diff line change 1+ hacking on articulate-common-lisp
2+ ---
3+
4+ contributions welcome.
5+
6+ * ./livetest.sh will spawn a localhost:4000 webserver which watches the filesystem
7+ * ./build.sh will generate a Docker image ready for pushing
8+ * ./test.sh will run the build.sh generated Docker image. Note that
9+ this boots a nginx server.
10+ * ACL is delivered as a Docker image
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ url: http://articulate-lisp.com
1010# be the project name.
1111# *** IMPORTANT: If your local "jekyll serve" throws errors change this to '' or
1212# run it like so: jekyll serve --baseurl=''
13- baseurl : /
13+ baseurl : ' '
1414
1515# This can be '' to hide the Github nav button
1616github : ' pnathan/articulate-common-lisp'
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # host:guest port map.
3+ docker run --label=jekyll --label=stable --volume=$( pwd) :/srv/jekyll -t -p 127.0.0.1:4000:4000 jekyll/stable jekyll build
4+
5+ docker build -t pnathan/articulate-common-lisp:latest .
File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ docker run -p 8080:80 pnathan/articulate-common-lisp:latest
You can’t perform that action at this time.
0 commit comments