Difference between revisions of "Process:Running on Docker"

From MintHCM Wiki

(Created page with "{{Process-infobox |Process-name=MintHCM running on Docker |Process-type=Technical Process |Related Processes=Installation guide MintHCM v4 |Short Description=This guide covers...")
 
m
Line 3: Line 3:
 
|Process-type=Technical Process
 
|Process-type=Technical Process
 
|Related Processes=Installation guide MintHCM v4
 
|Related Processes=Installation guide MintHCM v4
|Short Description=This guide covers deploy of MintHCM in Docker environment. We provide a comprehensive Docker Compose setup for deploying MintHCM in a containerized environment.  
+
|Short Description=This guide covers the deployment of MintHCM in a Docker environment. We provide a comprehensive Docker Compose setup for deploying MintHCM in a containerized environment.
 
<br>
 
<br>
MintHCM is ready to go with this easy-to-use Docker configuration.
+
MintHCM is ready to go with this easy-to-use Docker configuration.  
 
}}
 
}}
  
  
 
==Features==  
 
==Features==  
* '''Containerized Deployment''': Deploy MintHCM effortlessly using Docker Compose. The setup includes the MintHCM web application, a MySQL database container and an Elastic Search container.
+
* '''Containerized Deployment''':  
 
+
Deploy MintHCM effortlessly using Docker Compose. The setup includes the MintHCM web application, a MySQL database container, and an Elasticsearch container.
* '''Configuration Options''': Customize your MintHCM installation by adjusting variables in the .env file. Modify parameters like the web port, database details, MintHCM admin credentials etc.
+
* '''Configuration Options''':  
 +
Customize your MintHCM installation by adjusting variables in the .env file. Modify parameters like the web port, database details, MintHCM admin credentials, etc.
 
==Instructions==  
 
==Instructions==  
 
=====Download docker-compose.yml and .env:=====
 
=====Download docker-compose.yml and .env:=====
Line 19: Line 20:
 
curl -sSL https://raw.githubusercontent.com/minthcm/minthcm/master/docker/.env
 
curl -sSL https://raw.githubusercontent.com/minthcm/minthcm/master/docker/.env
 
</syntaxhighlight>
 
</syntaxhighlight>
or just visit https://github.com/minthcm/minthcm/tree/master/docker and download required files.  
+
or just visit https://github.com/minthcm/minthcm/tree/master/docker and download the required files.
  
 
=====Customize Settings:=====
 
=====Customize Settings:=====
Line 71: Line 72:
 
Log in to MintHCM using the admin credentials specified in the .env file and start managing your CRM operations.
 
Log in to MintHCM using the admin credentials specified in the .env file and start managing your CRM operations.
 
<br>
 
<br>
Default: login: admin password: minthcm
+
Default: login: admin, password: minthcm
 
<br><br>
 
<br><br>
 
⚠️ Important: This Docker Compose setup is intended for demonstration and testing purposes only. We do not recommend using this configuration in a production environment.
 
⚠️ Important: This Docker Compose setup is intended for demonstration and testing purposes only. We do not recommend using this configuration in a production environment.

Revision as of 15:47, 21 December 2023

ExpandInfo
Process Name MintHCM running on Docker
Process Type ⧼ev-Technical Process⧽
Related Processes Installation guide MintHCM v4
Related Modules
Deploy MintHCM on Docker

Short Description

This guide covers the deployment of MintHCM in a Docker environment. We provide a comprehensive Docker Compose setup for deploying MintHCM in a containerized environment.
MintHCM is ready to go with this easy-to-use Docker configuration.



Features

  • Containerized Deployment:

Deploy MintHCM effortlessly using Docker Compose. The setup includes the MintHCM web application, a MySQL database container, and an Elasticsearch container.

  • Configuration Options:

Customize your MintHCM installation by adjusting variables in the .env file. Modify parameters like the web port, database details, MintHCM admin credentials, etc.

Instructions

Download docker-compose.yml and .env:
curl -sSL https://raw.githubusercontent.com/minthcm/minthcm/master/docker/docker-compose.yml
curl -sSL https://raw.githubusercontent.com/minthcm/minthcm/master/docker/.env

or just visit https://github.com/minthcm/minthcm/tree/master/docker and download the required files.

Customize Settings:

Edit the .env file.

# Docker port redirect
WEB_PORT=80

# MySQL password
MYSQL_PASSWORD=minthcm

# Database Configuration
DB_HOST=minthcm-db
DB_PORT=3306
DB_NAME=minthcm
DB_USER=root
DB_PASS=minthcm

# MintHCM Configuration
MINT_URL=http://localhost
MINT_USER=admin
MINT_PASS=minthcm

#Elastic Search Configuration
ELASTICSEARCH_HOST=minthcm-es
ELASTICSEARCH_PORT=9200
ELASTICSEARCH_USERNAME=elastic
ELASTICSEARCH_PASSWORD=changeme
INSTALL_DEMO_DATA=no
SSL=no
REBUILD_FRONTEND=no
Launch MintHCM:
docker compose up -d
Monitor Progress:
docker compose logs -f
Successful instalation

After successful installation, you should see:

 [OK] Installation finished successfuly
Access MintHCM:

Open your web browser and access MintHCM at http://localhost or the configured IP and port.

Configuration Changes:

If you wish to make changes to the .env file, create a fresh environment to ensure MintHCM is installed with the new parameters.

Enjoy MintHCM:

Log in to MintHCM using the admin credentials specified in the .env file and start managing your CRM operations.
Default: login: admin, password: minthcm

⚠️ Important: This Docker Compose setup is intended for demonstration and testing purposes only. We do not recommend using this configuration in a production environment.

Note

Docker and Docker Compose must be installed on your system.

DockerHub: https://hub.docker.com/repository/docker/minthcm/minthcm/general
GitHub: https://github.com/minthcm/minthcm