How to Install Frappe/Erpnext on Ubuntu Server 22.04
Posted: Fri May 30, 2025 10:17 pm
This is under construction and can be change in any moment if you find some error send mail to
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
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
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
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
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
Remember the Credentials for the First time are
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....
--------------------------------------------------------------------------------------------
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 Kosmitodev@gmail.com
--------------------------------------------------------------------------------------------
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
first we pull the image from docker with
Code: Select all
docker pull frappe/erpnextCode: Select all
git clone https://github.com/frappe/frappe_docker
cd frappe_dockerCode: Select all
docker compose -f pwd.yml up -dCode: 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:8080Code: Select all
User: Administrator
Password: adminNext time i will update with the Script for autostart the server when the server restart....