Initial commit

This commit is contained in:
2023-12-22 07:13:49 +01:00
commit da68aae5b1
9 changed files with 572 additions and 0 deletions

11
build.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/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