telegram-bot/docker-compose.yml
2025-03-21 18:18:40 +07:00

15 lines
231 B
YAML

version: '3.8'
services:
bot:
build: .
container_name: telegram_bot
ports:
- "5000:5000"
environment:
- ASPNETCORE_ENVIRONMENT=Production
volumes:
- ./logs:/app/logs
restart: always