-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (35 loc) · 1 KB
/
docker-compose.yml
File metadata and controls
36 lines (35 loc) · 1 KB
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
services:
core:
build:
context: ./core
ports:
- "${TL_PORT:-8080}:8080"
environment:
- TL_TOKEN=${TL_TOKEN}
- TL_PORT=8080
restart: unless-stopped
bridge:
build:
context: ./bridge
depends_on:
- core
environment:
- TL_TOKEN=${TL_TOKEN}
- TL_CORE_URL=http://core:8080
- TL_PORT=${TL_PORT:-8080}
- TL_PUBLIC_URL=${TL_PUBLIC_URL:-}
- TL_ENABLED_CHANNELS=${TL_ENABLED_CHANNELS:-}
- TL_RUNTIME=${TL_RUNTIME:-claude}
# Telegram
- TL_TG_BOT_TOKEN=${TL_TG_BOT_TOKEN:-}
- TL_TG_CHAT_ID=${TL_TG_CHAT_ID:-}
- TL_TG_ALLOWED_USERS=${TL_TG_ALLOWED_USERS:-}
# Discord
- TL_DC_BOT_TOKEN=${TL_DC_BOT_TOKEN:-}
- TL_DC_ALLOWED_USERS=${TL_DC_ALLOWED_USERS:-}
- TL_DC_ALLOWED_CHANNELS=${TL_DC_ALLOWED_CHANNELS:-}
# Feishu
- TL_FS_APP_ID=${TL_FS_APP_ID:-}
- TL_FS_APP_SECRET=${TL_FS_APP_SECRET:-}
- TL_FS_ALLOWED_USERS=${TL_FS_ALLOWED_USERS:-}
restart: unless-stopped