Metatube

Python web ui to download videos from YouTube and add metadata on top of it.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.3'
services:
    metatube:
        container_name: metatube
        restart: always
        image: jvt038/metatube:latest
        ports:
            - '5000:5000'
        environment:
            - PORT=5000
            - HOST=0.0.0.0
        volumes:
            - '/downloads:/downloads:rw'
            - '/metatube/database:/database:rw'
            - '/metatube/migrations:/config/migrations:rw'

Resources

GitHub: https://github.com/JVT038/MetaTube

Docker Hub: https://hub.docker.com/r/jvt038/metatube

Configuration: https://github.com/JVT038/MetaTube#checkered_flag-starting