Hi ERPnext Community!
I found out about this amazing piece of open software and wanted to try it out, I wanted to deploy this on a ubuntu 20.4.1 server using docker-compose but uniformly I have run into some errors
Digest: sha256:239fc686f848a761000c880ba1ca0f6b1af07db0d5894da59dcf9562017ba899
Status: Downloaded newer image for frappe/frappe-nginx:v14.21.0
Creating frappe_docker_configurator_1 ... done
ERROR: for queue-long Container "983ab199c0dc" exited with code 1.
ERROR: for backend Container "983ab199c0dc" exited with code 1.
ERROR: for queue-short Container "983ab199c0dc" exited with code 1.
ERROR: for queue-default Container "983ab199c0dc" exited with code 1.
ERROR: for websocket Container "983ab199c0dc" exited with code 1.
ERROR: for scheduler Container "983ab199c0dc" exited with code 1.
ERROR: Encountered errors while bringing up the project.
I use the default compose file, and the default only changed the password and disabled the rest of the settings because I don’t want to use an external DB or HTTPS for this specific test
this is the only change I did to the pwd.yml
frontend:
image: frappe/erpnext-nginx:v14.11.1
deploy:
restart_policy:
condition: on-failure
environment:
BACKEND: backend:8000
FRAPPE_SITE_NAME_HEADER: frontend
SOCKETIO: websocket:9000
UPSTREAM_REAL_IP_ADDRESS: 127.0.0.1
UPSTREAM_REAL_IP_HEADER: X-Forwarded-For
UPSTREAM_REAL_IP_RECURSIVE: "off"
PROXY_READ_TIMOUT: 120
CLIENT_MAX_BODY_SIZE: 50m
volumes:
- sites:/usr/share/nginx/html/sites
- assets:/usr/share/nginx/html/assets
ports:
- "8050:8080"
Thanks for help in advance