Return-Path: X-Original-To: apmail-struts-commits-archive@minotaur.apache.org Delivered-To: apmail-struts-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5DC07189D7 for ; Thu, 8 Oct 2015 09:17:28 +0000 (UTC) Received: (qmail 29192 invoked by uid 500); 8 Oct 2015 09:17:28 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 28831 invoked by uid 500); 8 Oct 2015 09:17:27 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 28586 invoked by uid 99); 8 Oct 2015 09:17:27 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Oct 2015 09:17:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6010FE0A9B; Thu, 8 Oct 2015 09:17:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: lukaszlenart@apache.org To: commits@struts.apache.org Date: Thu, 08 Oct 2015 09:17:30 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [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 Authored: Thu Oct 8 11:17:17 2015 +0200 Committer: Lukasz Lenart 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 +