@@ -21,24 +21,29 @@ DOCKER_BUILDKIT=1 docker build -f deploy/docker/Dockerfile -t lowcoderorg/lowcod
2121
2222Image can be configured by setting environment variables.
2323
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 ` |
3333| ` 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 ` |
3737| ` ENCRYPTION_PASSWORD ` | Encryption password | ` lowcoder.org ` |
3838| ` 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 ` |
4247
4348
4449## Building api-service image
@@ -57,17 +62,23 @@ DOCKER_BUILDKIT=1 docker build -f deploy/docker/Dockerfile -t lowcoderorg/lowcod
5762
5863Image can be configured by setting environment variables.
5964
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 ` |
6469| ` 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 ` |
6873| ` ENCRYPTION_PASSWORD ` | Encryption password | ` lowcoder.org ` |
6974| ` 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+
7182
7283
7384## Building node-service image
@@ -90,7 +101,7 @@ Image can be configured by setting environment variables.
90101| --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------- |
91102| ` PUID ` | ID of user running services. It will own all created logs and data. | ` 9001 ` |
92103| ` 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 ` |
94105
95106## Building web frontend image
96107
@@ -112,7 +123,7 @@ Image can be configured by setting environment variables.
112123| --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------- |
113124| ` PUID ` | ID of user running services. It will own all created logs and data. | ` 9001 ` |
114125| ` 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 ` |
117128
118129
0 commit comments