10 lines
129 B
Bash
Executable File
10 lines
129 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
# Exit in case of error
|
|
set -e
|
|
|
|
TAG=${TAG?Variable not set} \
|
|
docker-compose \
|
|
-f docker-compose.yml \
|
|
build
|