You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2015/10/08 11:17:30 UTC

[4/4] struts-site git commit: Adds Docker related scripts

Adds Docker related scripts


Project: http://git-wip-us.apache.org/repos/asf/struts-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts-site/commit/e6e6d83e
Tree: http://git-wip-us.apache.org/repos/asf/struts-site/tree/e6e6d83e
Diff: http://git-wip-us.apache.org/repos/asf/struts-site/diff/e6e6d83e

Branch: refs/heads/master
Commit: e6e6d83ea09a938674e160c8d3791a088aa0c0f9
Parents: b8517b7
Author: Lukasz Lenart <lu...@gmail.com>
Authored: Thu Oct 8 11:17:17 2015 +0200
Committer: Lukasz Lenart <lu...@gmail.com>
Committed: Thu Oct 8 11:17:17 2015 +0200

----------------------------------------------------------------------
 docker-run.fish | 2 ++
 docker-run.sh   | 4 ++++
 2 files changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts-site/blob/e6e6d83e/docker-run.fish
----------------------------------------------------------------------
diff --git a/docker-run.fish b/docker-run.fish
new file mode 100644
index 0000000..fcc7e94
--- /dev/null
+++ b/docker-run.fish
@@ -0,0 +1,2 @@
+docker run -v $PWD:/srv/jekyll -t -p 4000:4000 theapachestruts/struts-site-jekyll bundle exec jekyll serve --watch
+

http://git-wip-us.apache.org/repos/asf/struts-site/blob/e6e6d83e/docker-run.sh
----------------------------------------------------------------------
diff --git a/docker-run.sh b/docker-run.sh
new file mode 100755
index 0000000..5437bc2
--- /dev/null
+++ b/docker-run.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+docker run -v $(pwd):/srv/jekyll -t -p 4000:4000 theapachestruts/struts-site-jekyll bundle exec jekyll serve --watch
+