-
-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (25 loc) · 882 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (25 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
services:
scanner:
image: derhenning/tgtg:latest-alpine ## pre build image from docker hub
# image: tgtg-scanner:latest ## locally build image
# build: ## build image with compose
# context: .
# dockerfile: docker/Dockerfile.alpine
environment:
# Configuration via environment variables.
# Basic example using Telegram notifications
# For more options and details visit https://github.com/Der-Henning/tgtg/wiki/Configuration
- TGTG_USERNAME=
- SLEEP_TIME=60
- TZ=Europe/Berlin
- LOCALE=de_DE
- PORT=3000
- TELEGRAM=true
- TELEGRAM_TOKEN=
- TELEGRAM_CHAT_IDS=
volumes:
- tokens:/tokens ## volume to save TGTG credentials to reuse on next start up and avoid login mail
ports:
- 3000:3000
volumes:
tokens: