Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Der-Henning
GitHub Repository: Der-Henning/tgtg
Path: blob/main/docker-compose.yml
725 views
1
version: '3.3'
2
3
services:
4
scanner:
5
image: derhenning/tgtg:latest-alpine ## pre build image from docker hub
6
# image: tgtg-scanner:latest ## locally build image
7
# build: ## build image with compose
8
# context: .
9
# dockerfile: docker/Dockerfile.alpine
10
environment:
11
# Configuration via environment variables.
12
# Basic example using Telegram notifications
13
# For more options and details visit https://github.com/Der-Henning/tgtg/wiki/Configuration
14
15
- TGTG_USERNAME=
16
- SLEEP_TIME=60
17
- TZ=Europe/Berlin
18
- LOCALE=de_DE
19
20
- TELEGRAM=true
21
- TELEGRAM_TOKEN=
22
- TELEGRAM_CHAT_IDS=
23
24
volumes:
25
- tokens:/tokens ## volume to save TGTG credentials to reuse on next start up and avoid login mail
26
27
volumes:
28
tokens:
29
30