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