Skip to content

Latest commit

 

History

History
97 lines (81 loc) · 2.39 KB

DOCKER_README.md

File metadata and controls

97 lines (81 loc) · 2.39 KB

Quick reference

Readme, source, and documentation on https://github.com/Der-Henning/tgtg.

Supported Tags and respective Dockerfile links

The latest images represent the latest stable release. The edge images contain the latest commits to the main branch. The alpine images are based on the alpine Linux distribution and are significantly smaller.

Quick Start

Docker Compose Example:

version: "3.3"

services:
  tgtg:
    image: derhenning/tgtg:latest
    environment:
      - TZ=Europe/Berlin
      - DEBUG=false
      - TGTG_USERNAME=
      - SLEEP_TIME=60
      #- SCHEDULE_CRON=
      #- ITEM_IDS=
      - METRICS=false
      - METRICS_PORT=8000
      - DISABLE_TESTS=false
      - QUIET=false
      - LOCALE=en_US

      - APPRISE=false
      - APPRISE_URL=
      - APPRISE_BODY=
      #- APPRISE_TITLE=
      #- APPRISE_CRON=

      - SMTP=false
      - SMTP_HOST=smtp.gmail.com
      - SMTP_PORT=465
      - [email protected]
      - SMTP_PASSWORD=
      - SMTP_TLS=true
      - [email protected]
      - [email protected]
      #-SMTP_SUBJECT=
      #-SMTP_BODY=

      - PUSH_SAFER=false
      - PUSH_SAFER_KEY=
      - PUSH_SAFER_DEVICE_ID=

      - TELEGRAM=false
      - TELEGRAM_TOKEN=
      - TELEGRAM_CHAT_IDS=
      #- TELEGRAM_TIMEOUT=60
      #- TELEGRAM_BODY=

      - IFTTT=false
      - IFTTT_EVENT=tgtg_notification
      - IFTTT_KEY=

      - NTFY=false
      - NTFY_SERVER=https://ntfy.sh
      - NTFY_TOPIC=
      #- NTFY_TITLE
      #- NTFY_BODY=
      #- NTFY_PRIORITY=
      #- NTFY_TAGS=
      #- NTFY_USERNAME=
      #- NTFY_PASSWORD=
      #- NTFY_TIMEOUT=60
      #- NTFY_CRON=

      - WEBHOOK=false
      - WEBHOOK_URL=
      - WEBHOOK_METHOD=POST
      - WEBHOOK_BODY=
      - WEBHOOK_TYPE=plain/text
      #- WEBHOOK_HEADERS=
      #- WEBHOOK_USERNAME=
      #- WEBHOOK_PASSWORD=
      #- WEBHOOK_TIMEOUT=60
      #- WEBHOOK_CRON=
    volumes:
      - tokens:/tokens

volumes:
  tokens: