base demo
This commit is contained in:
26
docker-compose.yml
Normal file
26
docker-compose.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
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
|
||||
Reference in New Issue
Block a user