-
Notifications
You must be signed in to change notification settings - Fork 39
Installation guide
Welcome to the UCRM Installation guide. New UCRM can be deployed as a docker image on your own server. Please, choose your system and follow the instructions.
Run this command to install docker, pull the UCRM image and start it.
curl -fsSL https://raw.githubusercontent.com/U-CRM/billing/master/install.sh > /tmp/ucrm_install.sh && sudo bash /tmp/ucrm_install.sh
Note: By default, the installation script ensures that the application data (database, pictures, invoices, encryption key, etc.) will be stored outside the docker container (/home/ucrm/data). This will enable you to backup that data and more importantly, this will enable you to perform any future UCRM upgrades without any data loss.
When done the UCRM can be found at http://localhost/ or http://localhost:8080/.
Run these commands to download and run the installation script which will install docker, pull the UCRM image and start it.
su root
apt-get update
apt-get install curl -y
curl -fsSL https://raw.githubusercontent.com/U-CRM/billing/master/install.sh > /tmp/ucrm_install.sh && bash /tmp/ucrm_install.sh
Note: By default, the installation script ensures that the application data (database, pictures, invoices, encryption key, etc.) will be stored outside the docker container (/home/ucrm/data). This will enable you to backup that data and more importantly, this will enable you to perform any future UCRM upgrades without any data loss.
When done the UCRM can be found at http://localhost/ or http://localhost:8080/.
Unfortunately, Docker does not provide full support for these systems. Thus we can't ensure smooth backups and upgrades. At this moment we recommend to install VirtualBox with latest version of Ubuntu and then follow the Ubuntu instructions above.