How to deploy ERPNEXT application in the cloudjiffy

1)Login to your cloudjiffy account.

2)Install Docker Engine CE environment from the marketplace.

3)Take web ssh of the newly created environment and clone the frappe docker repository with the below command.

git clone https://github.com/frappe/frappe_docker

4)Change the directory to the frappe_docker and run the below command to add the "platform: linux/amd64" below every image detail in the file pwd.yml .

sed -i '/^    image:/a \    platform: linux/amd64' pwd.yml

5)Run the below command to pull the erpnext images and start the containers, and wait till to complete the installation process.

docker-compose -f pwd.yml up

6)Close web ssh and take web ssh again and run the below command and check whether all required containers are running or not.

docker ps -a

7)Run the below command to start the containers even after the environment restart.

docker update --restart=always frappe_docker-db-1 frappe_docker-redis-socketio-1 frappe_docker-redis-queue-1 frappe_docker-queue-default-1 frappe_docker-queue-short-1 frappe_docker-redis-cache-1 frappe_docker-websocket-1 frappe_docker-backend-1 frappe_docker-scheduler-1 frappe_docker-frontend-1

8)Open the environment URL in the browser with the 8080 port and enter into the ERPNEXT portal with the default username and password, and setup erpnext as per instructions.

User- Administrator

Password- admin

9)Now you are good to go!

 


Was this article helpful?

mood_bad Dislike 0
mood Like 0
visibility Views: 470