ClipBucket V5 is a free updated and upgraded version of ClipBucket.
ClipBucket is an Open Source and freely downloadable PHP script that will let you start your own Video Sharing website (YouTube/Netflix Clone) in a matter of minutes. ClipBucket is the fastest growing video script with the most advanced video sharing and social features.
With ClipBucket, you will have almost all social media features in your hand. You can let your users create playlists, collections and much more. They can send friend requests and private messages to each other as well.
You can start a fully dedicated video sharing website or photo sharing websites and also both at the same time as well.
Take a look at our live demo !
After more than 370 revisions, we're proud to officialy announce the release of ClipBucketV5 - 5.5.0, the biggest update of ClipBucket to this day, implementing tons of new features and preparing it's future.
ClipBucket original repository has been slowly dying since the release 4.1 (May 2018) and has been archived on December 2022.
ClipBucket V5 was created on 2016 by MacWarrior and is part of Oxygenz's projects since 2023
Why ClipBucket V5
PHP 7.0 - 8.4+ compatibility | MySQL 9+ & strict mode compatibility |
---|---|
UHD video resolutions support | TMDB integration |
Dark & Light theme | Age restriction |
Chromecast support | Recursive collections |
Subtitles support | HLS conversion |
Visual comments editor | New configuration & personalisation options |
Easy installation scripts | Updated libraries (VideoJS, Smarty, amCharts, ...) |
Integrated DB update system | Integrated translations (ENG, FRA, DEU, POR, ESP) |
Security, performance, stability and codestyle improvements |
And even more !
Installing ClipBucket V5 using Docker provides a streamlined and isolated environment for running the application.
docker run \
--restart unless-stopped \
--pull=always \
-e DOMAIN_NAME=clipbucket.local \
-e MYSQL_PASSWORD=clipbucket_password \
-e UID=1000 \
-e GID=1000 \
-v clipbucket_db:/var/lib/mysql \
-v clipbucket_files:/srv/http/clipbucket \
-p 80:80 \
--name clipbucket \
-d oxygenz/clipbucket-v5:latest
Docker command options explanation
docker run
options :
-
--restart unless-stopped
: Automatically restarts the container unless explicitly stopped. -
--pull=always
: Ensures the image is always pulled before starting, even if it exists locally. -
-e DOMAIN_NAME=...
: Sets the domain name for your ClipBucket V5 instance. -
-e MYSQL_PASSWORD=...
: Specifies the root password for MySQL. -
-e UID=1000
: Sets the user ID (UID) for the application running inside the container. 1000 is the typical UID for the first user on Linux systems. If you want a different user, adjust the UID. -
-e GID=1000
: Sets the group ID (GID) for the application running inside the container. Like UID, this is often 1000 by default, but it can be adjusted if you want a different group. -
-v clipbucket_db:/var/lib/mysql
: Maps a persistent volume for the database. -
-v clipbucket_files:/srv/http/clipbucket
: Maps a persistent volume for ClipBucket files. -
-p 80:80
: Maps port 80 on the host to port 80 on the container, making the application accessible via the host machine. -
--name clipbucket
: Names the container for easier management. -
-d
: Runs the container in detached mode.
UID and GID Explanation for Bind Mounts in Docker
UID and GID are only necessary when using bind mounts in Docker. A bind mount links a directory on your host machine to a directory in the container, like this:-v /path/to/host/folder:/srv/http/clipbucketWith bind mounts, Docker does not modify file permissions. If the UID and GID of the container's user do not match those of the host system, there can be permission issues. For example, files created by the container might not be accessible from the host and vice versa.
Why UID and GID matter
UID (User ID) and GID (Group ID) are numeric identifiers for users and groups on the system.If the container's UID and GID do not match those of the host user, permission issues arise.
UID and GID solution
Set the UID and GID in the docker run command to match the host user:-e UID=1000 \ -e GID=1000If you use Docker volumes (not bind mounts), UID and GID are not necessary since Docker manages the permissions internally. To find the UID and GID of a user on your host system (Debian), you can run the following commands:
id usernameReplace username with the name of the user. For example, for the user john, use id john.
Beginners - Easy installation scripts
Greetings young adventurer ! Don't worry, we've thought about you and created some easy installation scripts !All you need is here : Installation scripts
It should also be noted that these scripts are meant for testing and development purposes only
Advanced users
“Your path you must decide.”Required : MySQL 5.6+ / MariaDB 10.3+ ; PHP-FPM 7.0+ (+ modules : mysqli, curl, xml, mbstring, gd, openssl, fileinfo ; + functions exec, shell_exec) ; FFmpeg 3+ ; mediainfo ; sendmail
Recommended : MariaDB 10.3+ ; PHP 8.3+ ; FFmpeg 4.3+
Optionnal : Git
Only stable versions have been tested, mainly on Debian
ClipBucket V5 works on the principle of continuous integration, that is to say that the most stable version with the most features and fixes is the master version.
Use GIT to install your copy of ClipBucket V5 and easily keep it up to date thanks to our integrated systems.
When installed with git, ClipBucket V5 can self-update.
Simply log in and follow instruction from Admin Area > Dashboard.
Follow our quick steps tutorial
Still reading ? Good !
Now your ClipBucket V5 is installed (or maybe not yet)
and you request some help ? Or found a bug ? Or have a brilliant idea ?
Take a step back, breath slowly, and create an issue !
Be the more precise you can, add screenshots, give examples... I'm sure we will find a solution !
- Report issues to help us improve ClipBucket V5
- Star us on GitHub
- Star us on DockerHub
- Follow us on Linkedin