YOURLS is a set of PHP scripts that will allow you to run Your Own URL Shortener. You'll have full control over your data, detailed stats, analytics, plugins, and more. It's free.
%%LOGO%%
%%IMAGE%% server instancedocker run \
--name some-%%REPO%% \
--detach \
--network some-network \
--env YOURLS_SITE="https://example.com" \
--env YOURLS_USER="example_username" \
--env YOURLS_PASS="example_password" \
%%IMAGE%%
The YOURLS instance accepts a number of environment variables for configuration, see Environment Variables section below.
If you'd like to use an external database instead of a mysql container, specify the hostname and port with YOURLS_DB_HOST along with the password in YOURLS_DB_PASS and the username in YOURLS_DB_USER (if it is something other than root):
docker run \
--name some-%%REPO%% \
--detach \
--env YOURLS_DB_HOST=... \
--env YOURLS_DB_USER=... \
--env YOURLS_DB_PASS=... \
%%IMAGE%%
If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used:
docker run \
--name some-%%REPO%% \
--detach \
--network some-network \
--publish 8080:8080 \
%%IMAGE%%
Then, access it via http://localhost:8080/admin/ or http://<host-ip>:8080/admin/ in a browser.
Note: On first instantiation, reaching the root folder will generate an error. Access the YOURLS administration interface via the path /admin/.
When you start the yourls image, you can adjust the configuration of the YOURLS instance by passing one or more environment variables on the docker run command-line.
The YOURLS instance accepts a number of environment variables for configuration.
A few notable/important examples for using this Docker image include the following.
YOURLS_SITERequired.
YOURLS instance URL, no trailing slash, lowercase.
Example: YOURLS_SITE="https://example.com"
YOURLS_USERRequired.
YOURLS instance username.
Example: YOURLS_USER="example_username"
YOURLS_PASSRequired.
YOURLS instance password.
Example: YOURLS_PASS="example_password"
YOURLS_DB_HOST, YOURLS_DB_USER, YOURLS_DB_PASSOptional if linked mysql container.
Host, user (defaults to root) and password for the database.
YOURLS_DB_NAMEOptional.
Database name, defaults to yourls. The database must have been created before installing YOURLS.
YOURLS_DB_PREFIXOptional.
Database tables prefix, defaults to yourls_. Only set this when you need to override the default table prefix.
As an alternative to passing sensitive information via environment variables, _FILE may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in /run/secrets/<secret_name> files. For example:
docker run \
--name some-%%REPO%% \
--detach \
--env YOURLS_DB_PASS_FILE=/run/secrets/mysql-root \
%%IMAGE%%
Currently, this is supported for YOURLS_DB_HOST, YOURLS_DB_USER, YOURLS_DB_PASS, YOURLS_DB_NAME, YOURLS_DB_PREFIX, YOURLS_SITE, YOURLS_USER, and YOURLS_PASS.
Run docker compose up, wait for it to initialize completely, and visit http://localhost:8080/admin/, or http://<host-ip>:8080/admin/ (as appropriate).
This image does not provide any additional PHP extensions or other libraries, even if they are required by popular plugins. There are an infinite number of possible plugins, and they potentially require any extension PHP supports. Including every PHP extension that exists would dramatically increase the image size.
If you need additional PHP extensions, you'll need to create your own image FROM this one. The documentation of the php image explains how to compile additional extensions.
Mount the volume containing your plugins, pages or languages to the proper directory; and then apply them through the "admin" UI. Ensure read/write/execute permissions are in place for the user:
/var/www/html/user/plugins//var/www/html/user/pages//var/www/html/user/languages/If you wish to provide additional content in an image for deploying in multiple installations, place it in the same directories under /usr/src/yourls/ instead (which gets copied to /var/www/html/ on the container's initial startup).