{"id":13475427,"url":"https://github.com/dnomd343/alltube-docker","last_synced_at":"2025-03-27T00:31:25.316Z","repository":{"id":114357517,"uuid":"420023482","full_name":"dnomd343/alltube-docker","owner":"dnomd343","description":"Docker of AllTube Download","archived":false,"fork":false,"pushed_at":"2024-01-01T05:22:05.000Z","size":18,"stargazers_count":21,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-08-01T16:39:02.714Z","etag":null,"topics":["alltube","docker","docker-image","youtube-dl","youtube-dl-gui"],"latest_commit_sha":null,"homepage":"https://video.343.re","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dnomd343.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-22T08:32:27.000Z","updated_at":"2024-06-23T15:57:29.000Z","dependencies_parsed_at":"2023-12-19T14:43:21.548Z","dependency_job_id":"171b8317-f8bd-4b6b-8bd7-478b230ce798","html_url":"https://github.com/dnomd343/alltube-docker","commit_stats":null,"previous_names":["dnomd343/alltube-docker"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnomd343%2Falltube-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnomd343%2Falltube-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnomd343%2Falltube-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnomd343%2Falltube-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dnomd343","download_url":"https://codeload.github.com/dnomd343/alltube-docker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245760713,"owners_count":20667886,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alltube","docker","docker-image","youtube-dl","youtube-dl-gui"],"created_at":"2024-07-31T16:01:20.275Z","updated_at":"2025-03-27T00:31:25.040Z","avatar_url":"https://github.com/dnomd343.png","language":"Dockerfile","funding_links":[],"categories":["Dockerfile"],"sub_categories":[],"readme":"## Quick Start\n\n[AllTube Download](https://github.com/Rudloff/alltube) is a Web GUI for [youtube-dl](https://github.com/ytdl-org/youtube-dl), you can use it to download videos from a lot of websites online, even if they don't want you to do this.\n\n*AllTube* provide an [official site](http://alltubedownload.net/) to use *youtube-dl* online, or you can create one under your own domain. Unfortunately, the deployment of *AllTube* is a bit cumbersome, and a good docker can make your deployment faster.\n\nFirst of all, you must have a docker environment, if not you should [install docker](https://docs.docker.com/engine/install/) first. After completion, use the following command to start *AllTube*.\n\n```bash\ndocker run -d --restart always --name alltube -p 24488:80 dnomd343/alltube\n```\n\nAfter the command is run, *Alltube* will work on `tcp/24488`, of course, this port can be arbitrary. We can also specify the working options of *Alltube* through environment variables, the following are built-in options.\n\n+ `TITLE=...` ：Specify the website title.\n\n+ `REMUX=ON` ：Merge best audio and best video.\n\n+ `STREAM=ON` ：Allow stream videos through server.\n\n+ `CONVERT=ON` ：Enabled audio conversion.\n\n+ `PORT=...` ：Specify the service port, default in `80`\n\nHere is an example:\n\n```bash\ndocker run -d --restart always --name alltube \\\n  --env TITLE=\"My Alltube Site\" \\\n  --env CONVERT=ON \\\n  --env STREAM=ON \\\n  --env REMUX=ON \\\n  --env PORT=24488 \\\n  --network host dnomd343/alltube\n```\n\nNext, configure your web server reverse proxy to `localhost:24488`, let's take *Nginx* as an example here.\n\n```nginx\nserver {\n    listen 80;\n    server_name video.343.re;  # your domain\n    return 301 https://$server_name$request_uri;\n}\n\nserver {\n    listen 443 ssl http2;\n    server_name video.343.re;  # your domain\n    ssl_certificate /etc/ssl/certs/343.re/fullchain.pem;  # TLS certificate of your domain\n    ssl_certificate_key /etc/ssl/certs/343.re/privkey.pem;  # TLS private key of your domain\n    location / {\n        proxy_http_version 1.1;\n        proxy_set_header Connection '';\n        proxy_set_header Host $http_host;\n        proxy_set_header X-Forwarded-Proto $scheme;\n        proxy_pass http://127.0.0.1:24488;\n    }\n}\n```\n\nFinally, use the `nginx -s reload` command to take effect, visit your domain name and enjoy it!\n\n## Advanced\n\nIf necessary, you can use the following command to build the image yourself.\n\n```bash\ndocker build -t alltube https://github.com/dnomd343/alltube-docker.git\n```\n\nDue to the stagnation of the [youtube-dl](https://github.com/ytdl-org/youtube-dl) update, currently we use the [yt-dlp](https://github.com/yt-dlp/yt-dlp) project, you can manually change `YTDLP` in the Dockerfile to specify the latest version.\n\nIf you don't need the conversion function, you can remove the installation of `ffmpeg`, which will reduce the image size to a certain extent.\n\nIn addition, the project supports multi-stage builds, using the `buildx` command will speed up the build process. Below is an example of using `buildx` to build multi-architecture images.\n\n```bash\ndocker buildx build -t dnomd343/alltube \\\n  --platform=\"linux/amd64,linux/386,linux/arm64,linux/arm/v7\" \\\n  https://github.com/dnomd343/alltube-docker.git --push\n```\n\n## License\n\nMIT ©2023 [@dnomd343](https://github.com/dnomd343)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdnomd343%2Falltube-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdnomd343%2Falltube-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdnomd343%2Falltube-docker/lists"}