Files
pg-bkup/build.sh

11 lines
163 B
Bash
Executable File

#!/usr/bin/env bash
if [ $# -eq 0 ]
then
tag='latest'
else
tag=$1
fi
docker build -f src/Dockerfile -t jkaninda/pg-bkup:$tag .
#docker compose up -d