mirror of
https://github.com/tgbot-collection/ytdlbot.git
synced 2025-02-22 14:23:20 +08:00
29 lines
No EOL
561 B
YAML
29 lines
No EOL
561 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
redis:
|
|
image: redis:7-alpine
|
|
restart: always
|
|
logging:
|
|
driver: none
|
|
|
|
mysql:
|
|
image: ubuntu/mysql:8.0-22.04_beta
|
|
restart: always
|
|
volumes:
|
|
- ./db_data:/var/lib/mysql
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: 'root'
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
logging:
|
|
driver: none
|
|
|
|
ytdl:
|
|
image: bennythink/ytdlbot
|
|
env_file:
|
|
- .env
|
|
restart: always
|
|
volumes:
|
|
- ./youtube-cookies.txt:/app/youtube-cookies.txt
|
|
depends_on:
|
|
- redis |