Files
telegram_bot_vpn/docker-compose.override.yml
2026-02-18 00:02:25 +05:00

21 lines
352 B
YAML

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