This commit is contained in:
2026-02-18 00:02:25 +05:00
parent a1ef89ff9a
commit 5e0f779a4d
17 changed files with 404 additions and 11 deletions

View File

@@ -0,0 +1,20 @@
version: '3.8'
services:
bot:
build: .
command: python -m bot.main
volumes:
- .:/app
env_file:
- .env
restart: unless-stopped
api:
build: .
command: uvicorn api.main:app --host 0.0.0.0 --port 8000
volumes:
- .:/app
env_file:
- .env
restart: unless-stopped
depends_on:
- bot