From e1c3d2ec14c1617fc779bccfdb64b4c09bdc6525 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Mon, 14 Jan 2019 20:41:52 -0700 Subject: Alpha Version --- examples/example7/example7.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 examples/example7/example7.sh (limited to 'examples/example7') diff --git a/examples/example7/example7.sh b/examples/example7/example7.sh new file mode 100755 index 0000000..38cbbbc --- /dev/null +++ b/examples/example7/example7.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash +# vim: set filetype=sh +# +# Author: Cody Hiar +# Date: 2019-01-15 +# +# Description: User cookiecutter to create templated docker project +# +# Set options: +# e: Stop script if command fails +# u: Stop script if unset variable is referenced +# x: Debug, print commands as they are executed +# o pipefail: If any command in a pipeline fails it all fails +# +set -exuo pipefail + +# Run cookiecutter +cookiecutter https://github.com/thornycrackers/cookiecutter_docker -- cgit v1.2.3