restic/entrypoint.sh

9 lines
100 B
Bash

#!/usr/bin/env bash
if [[ "$1" == "start" ]]; then
/usr/bin/restic "$@"
else
exec "$@"
fi