Dockerize frappe app

I have a problem is when i dockerize my app my container run without error but whn i am trying to access link , i obtain url 404 not found .
this is my dockerfile:

Use the official Frappe/ERPNext base image

FROM frappe/frappe-worker:edge

Set working directory

WORKDIR /home/frappe/frappe-bench

Copy your custom app directory into the Frappe apps directory

COPY . /home/frappe/frappe-bench/apps/

Expose port 8000

EXPOSE 8000

Set default command to start the Frappe development server

CMD [“bench”, “serve”]

Use this documentation: frappe_docker/docs/custom-apps.md at main · frappe/frappe_docker · GitHub

1 Like