version: '3.8' services: # Service du Bot Telegram bot: build: . container_name: modobot-service restart: always command: python main.py env_file: - .env # 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