42 lines
912 B
Plaintext
42 lines
912 B
Plaintext
# Pfad zu deinen Compose-Files
|
|
COMPOSE_DIR="/pfad/zu/deinen/stacks"
|
|
|
|
# Dateimuster
|
|
COMPOSE_PATTERN="docker-compose.yml"
|
|
|
|
# Exclude Container
|
|
EXCLUDE_SERVICES=(
|
|
"example_container_1"
|
|
"example_container_2"
|
|
)
|
|
|
|
# Exclude Stack
|
|
EXCLUDE_STACKS=(
|
|
"example_stack_1"
|
|
"example_stack_2"
|
|
)
|
|
|
|
# Verhalten bei gestoppten Containern
|
|
UPDATE_STOPPED=true # Image aktualisieren
|
|
START_STOPPED=false # danach NICHT starten
|
|
|
|
# Dry Run (true/false)
|
|
DRY_RUN=false
|
|
|
|
# Logging
|
|
LOG_FILE="/pfad/zum/log/update.log"
|
|
LOG_LEVEL="INFO" # DEBUG=sehr detailliert, INFO=Standard, WARN=nur wichtige Hinweise/Updates, ERROR=nur Fehler
|
|
|
|
# ntfy
|
|
NTFY_ENABLED=true
|
|
NTFY_TITLE="Docker Update ($(hostname))" # ntfy Titel (frei definierbar)
|
|
NTFY_TOKEN="DEIN_TOKEN"
|
|
NTFY_URL="https://ntfy.example.com/topic"
|
|
NTFY_TAGS="docker,update"
|
|
NTFY_ONLY_ON_CHANGES=false
|
|
# Versions Nr. anzeigen (true/false)
|
|
SHOW_VERSIONS=true
|
|
|
|
|
|
|