videoDownloadTGbot/docker-compose.yml

22 lines
487 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}
- VK_DOWNLOADER_URL=${VK_DOWNLOADER_URL}
volumes:
- ./video:/app/video
- ./instagram_cookies.txt:/app/instagram_cookies.txt
- ./data:/app/data:Z
network_mode: host
networks:
bot_network:
driver: bridge