IAmStoxe / custom_frappe_docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

  • This repo is based on official frappe_docker documentation to build custom apps.
  • Fork this repo to build your own image with ERPNext and list of custom Frappe apps.
  • Change the frappe and erpnext versions in base_versions.json to use them as base. These values correspond to tags and branch names on the github frappe and erpnext repo. e.g. version-13, v13.25.1
  • Change ci/clone-apps.sh script to clone your private and public apps. Read comments in the file to update it as per need. This repo will install following apps:
  • Change images/backend.Dockerfile to copy and install required apps with install-app.
  • Change images/frontend.Dockerfile to install ERPNext if required.
  • Change docker-bake.hcl for builds as per need.
  • Workflows from .github/workflows will build latest or tagged images using GitHub. Change as per need.
  • Runner will build images automatically and publish to container registry.
  • Use gitlab-ci.yml in case of Gitlab CI.

Manually Build images

Execute from root of app repo

Clone,

./ci/clone-apps.sh

Set environment variables,

  • FRAPPE_VERSION set to use frappe version during building images. Default is version-14.
  • ERPNEXT_VERSION set to use erpnext version during building images. Default is version-14.
  • VERSION set the tag version. Default is latest.
  • REGISTRY_NAME set the registry name. Default is custom_app.
  • BACKEND_IMAGE_NAME set worker image name. Default is custom_worker.
  • FRONTEND_IMAGE_NAME set nginx image name. Default is custom_nginx.

Build,

docker buildx bake -f docker-bake.hcl --load

Note:

  • Use docker buildx bake --load to load images for usage with docker.
  • Use docker buildx bake --push to push images to registry.
  • Use docker buildx bake --help for more information.
  • Change version in version.txt to build tagged images from the changed version.

About

License:MIT License


Languages

Language:Shell 34.8%Language:Dockerfile 34.2%Language:HCL 31.0%