<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[YOURLS]]></title><description><![CDATA[<p dir="auto"><img src="https://github.com/YOURLS/YOURLS/raw/master/images/yourls-logo.svg" alt="YOURLS" class=" img-fluid img-markdown" /></p>
<hr />
<h3>What is <a href="https://yourls.org/" target="_blank" rel="noopener noreferrer nofollow ugc">YOURLS</a>?</h3>
<p dir="auto">YOURLS is a set of PHP scripts that will allow you to run Your Own URL Shortener, on your server. You’ll have full control over your data, detailed stats, analytics, plugins, and more. It’s free and open-source.</p>
<h3>LISCENSE</h3>
<p dir="auto"><a href="https://github.com/YOURLS/YOURLS/blob/master/LICENSE" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/YOURLS/YOURLS/blob/master/LICENSE</a></p>
<hr />
<h3><img src="https://forum.sumisu.xyz/assets/plugins/nodebb-plugin-emoji/emoji/android/1f4e6.png?v=e98e1c9ec1b" class="not-responsive emoji emoji-android emoji--package" style="height:23px;width:auto;vertical-align:middle" title=":package:" alt="📦" /> Docker Compose</h3>
<pre><code>version: "3.1"
services:
  mariadb:
    hostname: mariadb
    image: linuxserver/mariadb:latest
    environment:
      MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
      MYSQL_DATABASE: ${DATABASE_NAME}
      MYSQL_USER: ${DATABASE_USER}
      MYSQL_PASSWORD: ${DATABASE_PASSWORD}
      PUID: ${PUID}
      PGID: ${PGID}
      TZ: ${TZ}
    networks:
      - yourls
    restart: unless-stopped
    volumes:
      - yourls-database:/config
  phpmyadmin:
    image: phpmyadmin:latest
    environment:
      PMA_HOST: mariadb
      PMA_PORT: 3306
      PMA_ARBITRARY: 1
    ports:
      - 4281:80
    networks:
      - yourls
    restart: unless-stopped
      
  yourls:
    container_name: yourls
    hostname: yourls
    image: yourls:latest
    environment:
      YOURLS_DB_HOST: mariadb
      YOURLS_DB_NAME: ${DATABASE_NAME}
      YOURLS_DB_USER: ${DATABASE_USER}
      YOURLS_DB_PASS: ${DATABASE_PASSWORD}
      YOURLS_SITE: ${YOURLS_SITE}
      YOURLS_USER: ${YOURLS_USERNAME}
      YOURLS_PASS: ${YOURLS_PASSWORD}
    networks:
      - yourls
    ports:
      - 4280:80
    restart: unless-stopped
    depends_on:
      - mariadb

networks:
  yourls:

volumes:
  yourls-database:
</code></pre>
<h3>.env</h3>
<pre><code class="language-.env">PUID=1000
PGID=1000
TZ=America/New_York
YOURLS_SITE=http://example.com
YOURLS_USERNAME=yourls-username
YOURLS_PASSWORD=yourls-password
DATABASE_NAME=yourls
DATABASE_USER=yourls
DATABASE_PASSWORD=yourls-database-password
MYSQL_ROOT_PASSWORD=yourls-database-password
</code></pre>
]]></description><link>https://forum.sumisu.xyz/topic/27/yourls</link><generator>RSS for Node</generator><lastBuildDate>Sat, 30 May 2026 23:15:41 GMT</lastBuildDate><atom:link href="https://forum.sumisu.xyz/topic/27.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 29 Sep 2024 18:04:34 GMT</pubDate><ttl>60</ttl></channel></rss>