Skip to content

Project Config File


The project config file is a JSON file called config.json located at the root of the project. This document describes what data is present in the file.

default_memory_limit (int, default: 1024)

Determines how much memory can be allocated to the container running the adapter. In addition to the memory required by the Adapter, this includes memory used by the Base OS layer and the Adapter's REST server. If this limit is exceeded, the container will immediately exit.

container_repository (string)

Specifies the container repository to be used by mp-build. This key value should contain the host and path used to tag and push images to the specified repository.

This overrides the default_container_registry_path if it is present.

Example
{
    "container_repository" : "harbor.my-organization.com/my-project/adaptername"
    ...
}