Official IOTA SDK images
4.0K
IOTA SDK is an open-source, modular ERP system built for performance and adaptability across diverse industries like finance, manufacturing, and warehouse management. Inspired by platforms like Odoo, it provides a configurable architecture and robust toolkit to streamline enterprise operations.
docker pull iotauz/sdk:base-0.0.1
The base image is meant to be used as a base image for projects that import IOTA SDK as a library.
Example Dockerfile:
FROM iotauz/sdk:base-0.0.1
COPY go.mod go.sum .
RUN go mod download
COPY . .
RUN go build -o app .
CMD ["./app"]
Licensed under Apache 2.0.
Contribute, discuss, and help shape the future of modular ERP solutions with us!
Content type
Image
Digest
sha256:5d2cf988b…
Size
107.5 MB
Last updated
10 months ago
docker pull iotauz/sdk:base-0.0.3