This image can be used to run ERPNext in production within Docker.
Build or pull ERPNext image.
Pull:
docker-compose pull
Build:
docker-compose build
Start:
docker-compose up --force-recreate -d
docker-compose logs -f --tail=10
Open in Browser
Login with Administrator and 123
Start container in dev-mode:
docker-compose -f docker-compose-dev.yml up -d
docker-compose -f docker-compose-dev.yml logs -f --tail=10
Best practice for adding custom apps is building an individual child image which inherits from this image. One basic example can be found under examples/customize-image/
inspired by https://github.com/frappe/frappe_docker
Docker Compose https://docs.docker.com/compose/install/