11 lines
182 B
Bash
11 lines
182 B
Bash
#! /usr/bin/env sh
|
|
|
|
# Exit in case of error
|
|
set -e
|
|
|
|
TAG=${TAG?Variable not set} \
|
|
FRONTEND_ENV=${FRONTEND_ENV-production} \
|
|
sh ./scripts/build.sh
|
|
|
|
docker compose -f compose.yml push
|