A Docker Compose environment which runs YetiforceCRM in one container (php:7.1-apache)and a MySQL instance in another.
We make reasonable efforts to support our work. Submit a GitHub issue if you have a security or other general question about this Docker image.
- Install Docker and Docker Compose
- Run
docker-compose up -d
from the root of this project. - Access
http://{docker_host}:8000
from your web browser to finish setting up YetiforceCRM.
If you already have MySQL installed or want to use a platform service like Amazon RDS, you can run the YetiforceCRM container seperately using Docker run. To set up YetiforceCRM using this approach, please do the following:
- Install Docker
- Run
docker run --name yetiforce -e DB_HOST_NAME=yourhostname -e DATABASE_NAME=yourdatabasename -e DB_USER_NAME=yourusername -e DB_PASSWORD=yourpassword -e DB_TYPE=mysql -e DB_TCP_PORT=3306 -e DB_MANAGER=MysqlManager -p 8000:80 -d efero/yetiforcecrm
- Access
http://{docker_host}:8000
from your web browser to finish setting up YetiforceCRM.