@@ -21,24 +21,29 @@ DOCKER_BUILDKIT=1 docker build -f deploy/docker/Dockerfile -t lowcoderorg/lowcod
21
21
22
22
Image can be configured by setting environment variables.
23
23
24
- | Environment variable | Description | Value |
25
- | --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------- |
26
- | ` REDIS_ENABLED ` | If ** true** redis server is started in the container | ` true ` |
27
- | ` MONGODB_ENABLED ` | If ** true** mongo database is started in the container | ` true ` |
28
- | ` API_SERVICE_ENABLED ` | If ** true** lowcoder api-service is started in the container | ` true ` |
29
- | ` NODE_SERVICE_ENABLED ` | If ** true** lowcoder node-service is started in the container | ` true ` |
30
- | ` FRONTEND_ENABLED ` | If ** true** lowcoder web frontend is started in the container | ` true ` |
31
- | ` PUID ` | ID of user running services. It will own all created logs and data. | ` 9001 ` |
32
- | ` PGID ` | ID of group of the user running services. | ` 9001 ` |
24
+ | Environment variable | Description | Value |
25
+ | --------------------------------| --------------------------------------------------------------------| ----------------------------------------------------- |
26
+ | ` REDIS_ENABLED ` | If ** true** redis server is started in the container | ` true ` |
27
+ | ` MONGODB_ENABLED ` | If ** true** mongo database is started in the container | ` true ` |
28
+ | ` API_SERVICE_ENABLED ` | If ** true** lowcoder api-service is started in the container | ` true ` |
29
+ | ` NODE_SERVICE_ENABLED ` | If ** true** lowcoder node-service is started in the container | ` true ` |
30
+ | ` FRONTEND_ENABLED ` | If ** true** lowcoder web frontend is started in the container | ` true ` |
31
+ | ` PUID ` | ID of user running services. It will own all created logs and data. | ` 9001 ` |
32
+ | ` PGID ` | ID of group of the user running services. | ` 9001 ` |
33
33
| ` MONGODB_URI ` | Mongo database connection string | ` mongodb://localhost:27017/lowcoder?authSource=admin ` |
34
- | ` REDIS_URL ` | Redis server URL | ` redis://localhost:6379 ` |
35
- | ` JS_EXECUTOR_URI ` | Node service URL | ` http://localhost:6060 ` |
36
- | ` ENABLE_USER_SIGN_UP ` | Enable registration of new users | ` true ` |
34
+ | ` REDIS_URL ` | Redis server URL | ` redis://localhost:6379 ` |
35
+ | ` JS_EXECUTOR_URI ` | Node service URL | ` http://localhost:6060 ` |
36
+ | ` ENABLE_USER_SIGN_UP ` | Enable registration of new users | ` true ` |
37
37
| ` ENCRYPTION_PASSWORD ` | Encryption password | ` lowcoder.org ` |
38
38
| ` ENCRYPTION_SALT ` | Salt used for encrypting password | ` lowcoder.org ` |
39
- | ` CORS_ALLOWED_DOMAINS ` | CORS allowed domains | ` * ` |
40
- | ` LOWCODER_API_SERVICE_URL ` | Lowcoder API service URL | ` http://localhost:8080 ` |
41
- | ` LOWCODER_NODE_SERVICE_URL ` | Lowcoder Node service (js executor) URL | ` http://localhost:6060 ` |
39
+ | ` CORS_ALLOWED_DOMAINS ` | CORS allowed domains | ` * ` |
40
+ | ` LOWCODER_API_SERVICE_URL ` | Lowcoder API service URL | ` http://localhost:8080 ` |
41
+ | ` LOWCODER_NODE_SERVICE_URL ` | Lowcoder Node service (js executor) URL | ` http://localhost:6060 ` |
42
+ | ` DEFAULT_ORGS_PER_USER ` | Default maximum organizations per user | ` 100 ` |
43
+ | ` DEFAULT_ORG_MEMBER_COUNT ` | Default maximum members per organization | ` 1000 ` |
44
+ | ` DEFAULT_ORG_GROUP_COUNT ` | Default maximum groups per organization | ` 100 ` |
45
+ | ` DEFAULT_ORG_APP_COUNT ` | Default maximum applications per organization | ` 1000 ` |
46
+ | ` DEFAULT_DEVELOPER_COUNT ` | Default maximum developers | ` 100 ` |
42
47
43
48
44
49
## Building api-service image
@@ -57,17 +62,23 @@ DOCKER_BUILDKIT=1 docker build -f deploy/docker/Dockerfile -t lowcoderorg/lowcod
57
62
58
63
Image can be configured by setting environment variables.
59
64
60
- | Environment variable | Description | Value |
61
- | --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------- |
62
- | ` PUID ` | ID of user running services. It will own all created logs and data. | ` 9001 ` |
63
- | ` PGID ` | ID of group of the user running services. | ` 9001 ` |
65
+ | Environment variable | Description | Value |
66
+ | --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------|
67
+ | ` PUID ` | ID of user running services. It will own all created logs and data. | ` 9001 ` |
68
+ | ` PGID ` | ID of group of the user running services. | ` 9001 ` |
64
69
| ` MONGODB_URI ` | Mongo database connection string | ` mongodb://localhost:27017/lowcoder?authSource=admin ` |
65
- | ` REDIS_URL ` | Redis server URL | ` redis://localhost:6379 ` |
66
- | ` JS_EXECUTOR_URI ` | Node service URL | ` http://localhost:6060 ` |
67
- | ` ENABLE_USER_SIGN_UP ` | Enable registration of new users | ` true ` |
70
+ | ` REDIS_URL ` | Redis server URL | ` redis://localhost:6379 ` |
71
+ | ` JS_EXECUTOR_URI ` | Node service URL | ` http://localhost:6060 ` |
72
+ | ` ENABLE_USER_SIGN_UP ` | Enable registration of new users | ` true ` |
68
73
| ` ENCRYPTION_PASSWORD ` | Encryption password | ` lowcoder.org ` |
69
74
| ` ENCRYPTION_SALT ` | Salt used for encrypting password | ` lowcoder.org ` |
70
- | ` CORS_ALLOWED_DOMAINS ` | CORS allowed domains | ` * ` |
75
+ | ` CORS_ALLOWED_DOMAINS ` | CORS allowed domains | ` * ` |
76
+ | ` DEFAULT_ORGS_PER_USER ` | Default maximum organizations per user | ` 100 ` |
77
+ | ` DEFAULT_ORG_MEMBER_COUNT ` | Default maximum members per organization | ` 1000 ` |
78
+ | ` DEFAULT_ORG_GROUP_COUNT ` | Default maximum groups per organization | ` 100 ` |
79
+ | ` DEFAULT_ORG_APP_COUNT ` | Default maximum applications per organization | ` 1000 ` |
80
+ | ` DEFAULT_DEVELOPER_COUNT ` | Default maximum developers | ` 100 ` |
81
+
71
82
72
83
73
84
## Building node-service image
@@ -90,7 +101,7 @@ Image can be configured by setting environment variables.
90
101
| --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------- |
91
102
| ` PUID ` | ID of user running services. It will own all created logs and data. | ` 9001 ` |
92
103
| ` PGID ` | ID of group of the user running services. | ` 9001 ` |
93
- | ` LOWCODER_API_SERVICE_URL ` | Lowcoder API service URL | ` http://localhost:8080 ` |
104
+ | ` LOWCODER_API_SERVICE_URL ` | Lowcoder API service URL | ` http://localhost:8080 ` |
94
105
95
106
## Building web frontend image
96
107
@@ -112,7 +123,7 @@ Image can be configured by setting environment variables.
112
123
| --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------- |
113
124
| ` PUID ` | ID of user running services. It will own all created logs and data. | ` 9001 ` |
114
125
| ` PGID ` | ID of group of the user running services. | ` 9001 ` |
115
- | ` LOWCODER_API_SERVICE_URL ` | Lowcoder API service URL | ` http://localhost:8080 ` |
116
- | ` LOWCODER_NODE_SERVICE_URL ` | Lowcoder Node service (js executor) URL | ` http://localhost:6060 ` |
126
+ | ` LOWCODER_API_SERVICE_URL ` | Lowcoder API service URL | ` http://localhost:8080 ` |
127
+ | ` LOWCODER_NODE_SERVICE_URL ` | Lowcoder Node service (js executor) URL | ` http://localhost:6060 ` |
117
128
118
129
0 commit comments