Admin Panel's Logo and Branding

This documentation guides you through the easy, precompiled installation of the Admin Panel. Despite the straightforward setup, you can still customize the panel to meet most customer needs.

Customizing the Admin Panel

After completing the setup, run docker volume ls in the terminal to view all Docker-created volumes. Among these, locate the volume named with taxiassets, usually root_taxiassets. To obtain detailed information, execute docker inspect <name>, replacing <name> with the actual volume name. This command will display comprehensive details about the volume.

{
    "CreatedAt": "time",
    "Driver": "local",
    "Labels": {
        "com.docker.compose.project": "root",
        "com.docker.compose.volume": "taxiassets"
    },
    "Mountpoint": "/var/lib/docker/volumes/root_taxiassets/_data",
    "Name": "root_taxiassets",
    "Options": null,
    "Scope": "local"
}

The mountpoint is the directory for storing CMS assets like translation files. Inside, you'll find the i18n folder housing translation files that contain CMS branding text. These can be updated to meet specific needs.

"branding": {
    "menu": {
        "header": "Ridy"
    },
    "footer": {
        "address": "http://ridy.io/",
        "prefix": "© 2018-2025",
        "title": "Ridy.io",
        "suffix": "All Rights Reserved."
    },
    "page": {
        "title": "Ridy CMS"
    }
}

In this folder, you can also find assets such as the logo used in the Admin Panel.

Last updated