You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/docker/README.md
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@ Included Dockerfile can be used to build an **all-in-one** image with all requir
4
4
5
5
For examples on running the all-in-one image or the multi image deployment see **deploy/docker/docker-compose.yaml** and **deploy/docker/docker-compose-multi.yaml**
6
6
7
+
Environment variables used to configure various aspects of the services are stored in **default.env**, **default-multi.env** and **override.env**. Look into the **default** files to see which variables can be set and what are the default values. To change the defaults, use **override.env**. You don't have to use **--env-file** parameter with **doker compose** because the files are loaded from within `docker-compose.yaml` and `docker-compose-multi.yaml`.
7
8
8
9
## all-in-one image
9
10
@@ -43,21 +44,27 @@ Image can be configured by setting environment variables.
43
44
|`LOWCODER_API_RATE_LIMIT`| Number of max Request per Second |`100`|
44
45
|`LOWCODER_API_SERVICE_URL`| Lowcoder API service URL |`http://localhost:8080`|
45
46
|`LOWCODER_NODE_SERVICE_URL`| Lowcoder Node service (js executor) URL |`http://localhost:6060`|
47
+
|`LOWCODER_NODE_SERVICE_SECRET`| Secret used for encrypting communication between API service and Node service - CHANGE IT! ||
48
+
|`LOWCODER_NODE_SERVICE_SALT`| Salt used for encrypting communication between API service and Node service - CHANGE IT! ||
46
49
|`LOWCODER_MAX_ORGS_PER_USER`| Default maximum organizations per user |`100`|
47
50
|`LOWCODER_MAX_MEMBERS_PER_ORG`| Default maximum members per organization |`1000`|
48
51
|`LOWCODER_MAX_GROUPS_PER_ORG`| Default maximum groups per organization |`100`|
49
52
|`LOWCODER_MAX_APPS_PER_ORG`| Default maximum applications per organization |`1000`|
50
53
|`LOWCODER_MAX_DEVELOPERS`| Default maximum developers |`100`|
51
54
|`LOWCODER_WORKSPACE_MODE`| SAAS to activate, ENTERPRISE to switch off - Workspaces |`SAAS`|
52
55
|`LOWCODER_EMAIL_SIGNUP_ENABLED`| Control if users create their own Workspace automatic when Sign Up |`true`|
56
+
|`LOWCODER_EMAIL_AUTH_ENABLED`| Controls whether authentication via email is enabled |`true`|
53
57
|`LOWCODER_CREATE_WORKSPACE_ON_SIGNUP`| IF LOWCODER_WORKSPACE_MODE = SAAS, controls if a own workspace is created for the user after sign up |`true`|
54
58
|`LOWCODER_MARKETPLACE_PRIVATE_MODE`| Control if not to show Apps on the local Marketplace to anonymous users |`true`|
55
59
|`LOWCODER_SUPERUSER_USERNAME`| Username of the Super-User of an Lowcoder Installation |`admin@localhost`|
56
60
|`LOWCODER_SUPERUSER_PASSWORD`| Password of the Super-User, if not present or empty, it will be generated | `generated and printed into log file |
0 commit comments