grafana-backuper/entrypoint.sh
Tom Neuber 9706036062
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
fix(Dockerfile): correct entrypoint execution typo
2024-12-07 02:04:35 +01:00

8 lines
185 B
Bash
Executable file

#!/bin/bash
# Check if the environment variable GRAFANA_MODE is set
if [ -z "$GB_SEQUENCE" ]; then
exec ./grafana-backuper backup --json
else
exec ./grafana-backuper --json
fi