With Lowcoder v1.1.8 we created a drop-in replacement for Openblocks v1.1.8.
To run it, no changes were required.
However, to migrate from Openblocks or Lowcoder 1.1.8 to Lowcoder 2.0,0, some changes are required and these are the steps to be followed:
{% hint style="info" %} if not using Lowcoder v1.1.8 or the latest Openblocks released version (v1.1.8), please upgrade first to Openblocks v1.1.8 {% endhint %}
{% tabs %}
{% tab title="All-in-one Docker image" %}
docker compose down
{% endtab %}
{% tab title="Multi-Image Deployment" %}
docker compose -f docker-compose-multi.yaml down
{% endtab %}
{% endtabs %}
mv openblocks-stacks lowcoder-stacks
download docker-compose.yaml or docker-compose-multi.yaml file depending on which installation you prefer (all-in-one or multi-images)\
Edit the docker-compose file and make sure to update these settings - values have to match exactly what you had in your Openblocks version:
ENCRYPTION_PASSWORD:
ENCRYPTION_SALT:
MONGODB_URL:
{% tabs %}
{% tab title="All-in-one Docker image" %}
docker compose up -d
{% endtab %}
{% tab title="Multi-Image Deployment" %}
docker compose -f docker-compose-multi.yaml up -d
{% endtab %}
{% endtabs %}