Unlock explosive growth with the easy to use and customizable CRM
for your marketing, sales, and customer service teams. Docker Power!
- Clone project with
git clone https://github.com/javanile/vtiger-demo.git
- Launch command
docker-compose up -d
intovtiger-demo
directory - Visit
http://localhost:8080/
login with usernameadmin
and passwordadmin
Create your custom vtiger environment, follow this as example:
version: '3'
services:
vtiger:
image: javanile/vtiger:7.1.0
environment:
- MYSQL_HOST=mysql
- MYSQL_DATABASE=vtiger
- MYSQL_ROOT_PASSWORD=secret
ports:
- "8080:80"
volumes:
- ./:/app
- ./volumes/logs:/var/www/html/vtiger/logs
- ./volumes/storage:/var/www/html/vtiger/storage
links:
- mysql
mysql:
image: mysql:5.5
environment:
- MYSQL_DATABASE=vtiger
- MYSQL_ROOT_PASSWORD=secret
volumes:
- mysql:/var/lib/mysql:rw
volumes:
mysql:
If you have custom scenario with vtiger please place issues on the following page