mirror of
https://github.com/skoelle/icloud-contacts-sync.git
synced 2026-09-17 23:40:24 +00:00
16 lines
453 B
Bash
16 lines
453 B
Bash
#!/bin/sh
|
|
# Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de)
|
|
# Licensed under the MIT License. See LICENSE file in project root for details.
|
|
set -e
|
|
|
|
# Wurde ein alternativer Befehl uebergeben (z.B. uvicorn), fuehre diesen
|
|
# direkt aus und ueberspringe den Sync-/Cron-Modus.
|
|
if [ $# -gt 0 ]; then
|
|
exec "$@"
|
|
fi
|
|
|
|
echo "Starte icloud-contacts-sync Container"
|
|
echo "Scheduler: Python-basiert (kein supercronic)"
|
|
|
|
exec python3 /app/scheduler.py
|