27 lines
573 B
YAML
27 lines
573 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
|
|
extra_hosts:
|
|
- "dbtest.kaelstudio.tech:host-gateway"
|
|
|
|
# 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
|
|
extra_hosts:
|
|
- "dbtest.kaelstudio.tech:host-gateway"
|