next-downloader-bot/docker-compose.dev.yml
2025-08-15 13:13:55 +03:00

23 lines
470 B
YAML

services:
next-downloader-bot:
env_file:
- .env
build:
context: .
dockerfile: ./apps/bot/Dockerfile
restart: always
telegram-bot-api:
env_file:
- .env
image: aiogram/telegram-bot-api:latest
# environment:
# TELEGRAM_API_ID: "<api-id>"
# TELEGRAM_API_HASH: "<api-hash>"
volumes:
- telegram-bot-api-data:/var/lib/telegram-bot-api
# ports:
# - "8081:8081"
volumes:
telegram-bot-api-data: