-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.template.yml
49 lines (45 loc) · 1.01 KB
/
docker-compose.template.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
services:
fastfetchbot:
image: aturret/fast-fetch-bot:latest
container_name: fastfetchbot
# restart: always
volumes:
- ./conf:/app/conf
- video_file:/tmp
env_file:
- .env
ports:
- 10450:10450
depends_on:
- telegram-bot-api
telegram-bot-api:
image: aiogram/telegram-bot-api:latest
container_name: telegrambotapi
restart: always
volumes:
- telegram-bot-api-data-cache:/var/lib/telegram-bot-api
ports:
- 8081:8081
- 8082:8082
environment:
- TELEGRAM_API_ID=
- TELEGRAM_API_HASH=
- TELEGRAM_LOCAL=TRUE
- TELEGRAM_LOG_FILE=tglog.log
- TELEGRAM_STAT=1
- TELEBOT_API_SERVER_PORT=8081
fast-yt-downloader:
image: aturret/fast-yt-downloader:latest
container_name: fastytd
restart: always
environment:
- PORT=4000
volumes:
- video_file:${DOWNLOAD_DIR}
ports:
- 4000:4000
depends_on:
- fastfetchbot
volumes:
telegram-bot-api-data-cache:
video_file: