damubpm/core

By damubpm

Updated about 1 month ago

Core system

Image
API Management

10K+

version: "3.1"
services:
  frontend:
	build: frontend/
	ports:
	 - 28080:28080
	depends_on:
	  - "core"

  core:
	build: core/
	hostname: service-core
	container_name: core
	environment:
	  - DAMU_LICENSE=YOUR_LICENSE_KEY
	  - CRM_DB_TYPE=pgsql
	  - DAMUCRM_SALT=YOUR_SALT_dsadasdasdasdasdsd
	  - CRM_DB_CONN_STR=postgres://**:***@host:5432/db?sslmode=disable&TimeZone=Asia/Almaty
	  - OPENSHIFT_GO_IP=0.0.0.0
	  - OPENSHIFT_GO_PORT=19999
	  - OPENSHIFT_APP_NAME=damucrm
	  - LD_LIBRARY_PATH=:/opt/kalkancrypt/:/opt/kalkancrypt/lib/engines
	  - DAMUCRM_CRYPT_SALT=YOUR_CRYPT_SALT_dsadasdasdasdasdsd
	  - DAMUCRM_MULTIPLE_SESSIONS=1
	  - DAMU_ALLOW_INTERNET_AUTH=1
	  - DAMUCRM_DISABLE_LOGIN_RATELIMIT=1

Docker Pull Command

docker pull damubpm/core