-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (42 loc) · 906 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
44 lines (42 loc) · 906 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# docker-compose.yml
services:
# Telegram Bot Service
bot:
build:
context: .
dockerfile: Dockerfile
container_name: football-x-bot
restart: unless-stopped
volumes:
# Persist SQLite database
- ./data:/app/data
environment:
- PYTHONUNBUFFERED=1
env_file:
- .env
networks:
- football-x-network
command: ["python", "bot/main.py"]
# Streamlit Dashboard Service
dashboard:
build:
context: .
dockerfile: dashboard/Dockerfile.dashboard
container_name: football-x-dashboard
restart: unless-stopped
ports:
- "8501:8501"
volumes:
# Persist SQLite database (shared with bot)
- ./data:/app/data
environment:
- PYTHONUNBUFFERED=1
env_file:
- .env
networks:
- football-x-network
depends_on:
- bot
networks:
football-x-network:
driver: bridge