nutools/docker/build

60 lines
1018 B
Plaintext
Raw Normal View History

2018-06-02 18:20:02 +04:00
#!/bin/bash
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
source /etc/ulibauto || exit 1
cd "$scriptdir"
NAME=nutools
BUILDDIR=b
TRANSDIR="$BUILDDIR/t"
ENVDIR=..
function display_help() {
uecho "$scriptname: construire $NAME
USAGE
$scriptname [options]
OPTIONS
-b, --build
2018-06-02 19:52:40 +04:00
-n, --no-cache
-r, --run"
2018-06-02 18:20:02 +04:00
}
auto=1
prereqs=
build=
no_cache=
2018-06-02 19:52:40 +04:00
run=
2018-06-02 18:20:02 +04:00
args=(
--help '$exit_with display_help'
--prereqs '$prereqs=1; auto='
-b,--build '$build=1; auto='
-n,--no-cache no_cache=1
2018-06-02 19:52:40 +04:00
-r,--run '$run=1; auto='
2018-06-02 18:20:02 +04:00
)
parse_args "$@"; set -- "${args[@]}"
if [ -n "$prereqs" ]; then
build=
elif [ -n "$auto" ]; then
build=1
fi
if [ -n "$build" ]; then
setx date=date +%y%m%d
args=(
-f Dockerfile
-t $NAME:latest
--build-arg "date=$date"
${no_cache:+--no-cache}
)
etitle "Création de l'image docker $NAME"
docker build "${args[@]}" "$ENVDIR"
eend
fi
2018-06-02 19:52:40 +04:00
if [ -n "$run" ]; then
docker run -it --rm "$NAME"
fi