Skip to content

Commit f2e0e10

Browse files
author
Christopher Carpenter
committed
Fix the broken docker scripts
I am far from a docker expert, but the original scripts were complaining that jekyll/stable didn't exist. In addition, CTRL+C was not killing the livetest docker container. With these changes both things seem to work for me. I recommend manually testing these yourself before merging.
1 parent 12244b2 commit f2e0e10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22
# 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
3+
docker run --label=jekyll --label=stable --volume=$(pwd):/srv/jekyll -t -p 127.0.0.1:4000:4000 jekyll/jekyll jekyll build
44

55
docker build -t pnathan/articulate-common-lisp:latest .

livetest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
docker run --label=jekyll --label=stable --volume=$(pwd):/srv/jekyll -t -p 127.0.0.1:4000:4000 jekyll/stable jekyll s --baseurl=''
2+
docker run --label=jekyll --label=stable --volume=$(pwd):/srv/jekyll -p 127.0.0.1:4000:4000 jekyll/jekyll

0 commit comments

Comments
 (0)