Files
tmodbot/docker-compose.yml
2026-04-14 08:41:57 +02:00

27 lines
503 B
YAML

version: '3.8'
services:
# Service du Bot Telegram
bot:
build: .
container_name: modobot-service
restart: always
command: python main.py
env_file:
- .env
volumes:
- .:/app
# Service du Dashboard Streamlit
dashboard:
build: .
container_name: modobot-dashboard
restart: always
ports:
- "8599:8599"
command: streamlit run dashboard.py --server.port 8599 --server.address 0.0.0.0
env_file:
- .env
volumes:
- .:/app