Is it permitted to discuss dockerisation of ERPNext on this board? I found one thread, but it was closed over a year ago. It contained a link to another thread but when I follow the link I’m told “Sorry, you don’t have access to that topic!”.
I have tried running a number of ERPNext dockers, but many of them won’t let me log into the application, instead displaying an Nginx screen telling me that nginx is not configured. This may be because I have to redirect port 80 to another port as port 80 is used by the UI on my server.
The dcoker image with which I’ve had most success is lukptr/erpnext7
However, running that docker, the about shows:
`Installed Apps
ERPNext: v9.0.6 (master)
Frappe Framework: v9.0.8 (master)`
Some facilities which are documented in the user manual do not appear to be present in the version I have running - perhaps they are a later addition.
When I attempt to do a bench update, I get the following output:
root@Tower:~# docker exec -it erpnext7 bash
root@0ff7ad4d3e0d:/home/frappe/frappe-bench# bench update
INFO:bench.utils:updating bench
INFO:bench.utils:git pull
Updating 282ba71…4e896b5
error: Your local changes to the following files would be overwritten by merge:
playbooks/develop/includes/mariadb_centos.yml
playbooks/develop/includes/mariadb_debian.yml
playbooks/develop/includes/mariadb_ubuntu.yml
playbooks/develop/includes/setup_mariadb.yml
playbooks/develop/includes/wkhtmltopdf.yml
playbooks/develop/install.yml
playbooks/develop/macosx.yml
playbooks/develop/templates/simple_mariadb_config.cnf
playbooks/develop/ubuntu.yml
playbooks/production/includes/setup_bench_production.yml
playbooks/production/install.yml
playbooks/production/templates/default_nginx.j2
playbooks/production/templates/frappe_selinux.te
vm/ansible/templates/mariadb_config.cnf
Please, commit your changes or stash them before you can merge.
I’m not sure whether it is safe to simply do a ‘git stash’, run the update and then ‘git stash apply’ again afterwards. Would this give me an up-to-date version of ERPNext?
Is anyone able to advise me, or recommend a better docker image which I can run? I do already have a mariadb docker running, so I should be able to cope with an ERPNext docker which doesn’t have mariadb integrated.