From 8f7de74cd6fb4317771586c65b43f8a6e4d85f26 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Sat, 12 Jan 2019 17:05:29 -0700 Subject: Some working files --- examples/example3/Dockerfile | 5 +++++ examples/example3/example3.sh | 22 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 examples/example3/Dockerfile create mode 100755 examples/example3/example3.sh (limited to 'examples/example3') diff --git a/examples/example3/Dockerfile b/examples/example3/Dockerfile new file mode 100644 index 0000000..9fb6973 --- /dev/null +++ b/examples/example3/Dockerfile @@ -0,0 +1,5 @@ +FROM ubuntu:18.04 + +RUN apt-get update && apt-get install -y vim + +WORKDIR /usr/src/app diff --git a/examples/example3/example3.sh b/examples/example3/example3.sh new file mode 100755 index 0000000..b1676a4 --- /dev/null +++ b/examples/example3/example3.sh @@ -0,0 +1,22 @@ +#!/usr/bin/env bash +# vim: set filetype=sh +# +# Author: Cody Hiar +# Date: 2019-01-15 +# +# Description: Show how to build image, then run +# it. +# +# 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 + +# Build the image +docker build -t vim_image . + +# Run the image +docker run --rm -it -v "$(pwd)":/usr/src/app vim_image /bin/bash -c vim -- cgit v1.2.3