aboutsummaryrefslogtreecommitdiff
path: root/examples/example2.sh
blob: ab4faff6f2ee68a9d236c0bfe7a28ecc2bc7de16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash
# vim: set filetype=sh
#
# Author: Cody Hiar
# Date: 2019-01-15
#
# Description: Dockerize the `date` command
#
# 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 a container
docker run --rm -it ubuntu:18.04 /bin/bash -c date "$@"