Files
pg-bkup/build.sh

14 lines
227 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
2024-01-18 16:08:11 +01:00
#go build
CGO_ENABLED=0 GOOS=linux go build
2023-12-22 07:13:49 +01:00
2024-01-18 16:08:11 +01:00
docker build -f docker/Dockerfile -t jkaninda/pg-bkup:$tag .
docker compose up -d --force-recreate