/vtiger-docker

Dockerizing VTiger

Primary LanguagePHP

VTiger on Docker

A dockerized versiono of VTiger application as a starting point for VTiger development.

Requirements

Installation

Start up the dockerized application:

$ cd target-directory
$ docker-compose up

Images and Containers

The images for the application containers are built from the Dockerfiles in the docker directory so that you can modify them as needed for your application.

Helpers

The starter includes a Makefile to simplify the basic tasks:

  • make build builds new Docker images with the current project files being copied into the images.
  • make up-dev will add the settings from dev.yml to the default configuration and start the application with the web directory being mounted into the containers.
  • make up-prod will add the settings from prod.yml to the default configuration and start the application
  • make down will stop the application

Execute make or make help from the project root to show all available tasks.