UCRM – Install on Debian

Run these commands to download and run the installation script which will install the docker, then 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

 
This script updates UCRM docker containers to the latest version.

cd /home/ucrm
curl -fsSL https://raw.githubusercontent.com/U-CRM/billing/master/update.sh | bash | tee migrate.log

 
Start a stop

cd /home/ucrm
sudo docker-compose stop
sudo docker-compose rm
sudo docker-compose up -d

 
Upgrade

cd /home/ucrm
curl -fsSL https://raw.githubusercontent.com/Ubiquiti-App/UCRM/master/update.sh | bash | tee migrate.log