How to Install Frappe/Erpnext on Ubuntu Server 22.04

Just Pain.... (×﹏×)
Post Reply
User avatar
Kosmito
Site Admin
Posts: 17
Joined: Mon Jan 09, 2023 7:16 pm
Contact:

How to Install Frappe/Erpnext on Ubuntu Server 22.04

Post by Kosmito »

This is under construction and can be change in any moment if you find some error send mail to
--------------------------------------------------------------------------------------------
Kosmitodev@gmail.com
--------------------------------------------------------------------------------------------
First we need change the docker repo the official repo (of Ubuntu Server) is not good on this case because docker compose come in other package not in the same

you can follow the guide here on this page Install Using The Official Repository for Ubuntu in any case if is offline i left a copy inside of the spoiler
► Show Spoiler
Now we can follow next step, now usign the official github is going to install everything but for some reason work for me this method

first we pull the image from docker with

Code: Select all

docker pull frappe/erpnext
and now we pull from git the code of frappe like they say on Github Page of Frappe Docker, later with go inside of the folder like this

Code: Select all

git clone https://github.com/frappe/frappe_docker
cd frappe_docker
there you can find the file pmw.yml on this file you can change the port and other thins (still i don´t tryit), using this command is going to build everything and go up the server on Port 8080

Code: Select all

docker compose -f pwd.yml up -d
Remember if you are not Root use Sudo, is going to take a while depending of the power of the cpu if everything go ok is not going to say something go the browser to this URL

Code: Select all

# if you do it on a server use the ip server and remember open the port on the Firewall or Turn Off Temporaly
http://IPOFTHESERVER:8080

#if you do it locally on your pc
http://localhost:8080
Remember the Credentials for the First time are

Code: Select all

User:  Administrator
Password:  admin
and you do the initial Setup of the Site

Next time i will update with the Script for autostart the server when the server restart....
Image
Image
Post Reply