restic/entrypoint.sh

9 lines
100 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
2023-04-12 14:47:01 +00:00
if [[ "$1" == "start" ]]; then
/usr/bin/restic "$@"
2023-04-12 14:47:01 +00:00
else
exec "$@"
2023-04-12 14:47:01 +00:00
fi