32 lines
947 B
Markdown
32 lines
947 B
Markdown
Docs:
|
|
|
|
# Dependencies
|
|
Distrobuilder
|
|
Incus
|
|
UUID Generator
|
|
|
|
# Password Generating
|
|
export DISTROBUILDER_ROOT_UUID=$(uuidgen)
|
|
|
|
# Image Compile
|
|
Jey ERP Stable Version 16
|
|
distrobuilder build-incus -o image.architecture=amd64 -o image.release=3.23 jeyerp-stable.yaml
|
|
|
|
Jey ERP Latest Version Develop
|
|
distrobuilder build-incus -o image.architecture=amd64 -o image.release=edge jeyerp-latest.yaml
|
|
|
|
ERPNext Stable Version 16
|
|
distrobuilder build-incus -o image.architecture=amd64 -o image.release=3.23 erp-stable.yaml
|
|
|
|
ERPNext Latest Version Develop
|
|
distrobuilder build-incus -o image.architecture=amd64 -o image.release=edge erp-latest.yaml
|
|
|
|
# Image Import
|
|
incus image import incus.tar.xz rootfs.squashfs --alias jeyerp-develop --reuse
|
|
|
|
incus image import incus.tar.xz rootfs.squashfs --alias jeyerp --reuse
|
|
|
|
incus image import incus.tar.xz rootfs.squashfs --alias erp-develop --reuse
|
|
|
|
incus image import incus.tar.xz rootfs.squashfs --alias erp --reuse
|