restic-docker/build.sh

8 lines
151 B
Bash
Raw Permalink Normal View History

2019-06-06 06:37:26 +00:00
#!/bin/sh
docker build -t registry.lehouerou.net/restic-backup .
2020-10-27 17:29:34 +00:00
rc=$?
if [[ ${rc} == 0 ]]; then
docker push registry.lehouerou.net/restic-backup
2020-10-27 17:29:34 +00:00
fi