Files
pg-bkup/build.sh

11 lines
169 B
Bash
Raw Normal View History

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