-
-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
27 lines (26 loc) · 673 Bytes
/
docker-compose.yml
File metadata and controls
27 lines (26 loc) · 673 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
services:
telegram-forwarder:
image: heavrnl/telegramforwarder:latest
container_name: telegram-forwarder
# 如果需要使用 RSS 功能,请取消以下注释
# ports:
# - 9804:8000
restart: unless-stopped
volumes:
- ./db:/app/db
- ./.env:/app/.env
- ./logs:/app/logs
- ./sessions:/app/sessions
- ./temp:/app/temp
- ./ufb/config:/app/ufb/config
- ./config:/app/config
- ./rss/data:/app/rss/data
- ./rss/media:/app/rss/media
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
compress: "true"
stdin_open: true
tty: true