videoDownloadTGbot/docker-compose.yml

22 lines
461 B
YAML
Raw Normal View History

services:
bot:
build: .
container_name: video_download_bot
restart: unless-stopped
env_file:
- .env
environment:
- TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN}
- TELEGRAM_BOT_USERNAME=${TELEGRAM_BOT_USERNAME}
volumes:
- ./video:/app/video
- ./instagram_cookies.txt:/app/instagram_cookies.txt
- ./stats.json:/app/stats.json
networks:
- bot_network
networks:
bot_network:
driver: bridge