@@ -21,10 +21,11 @@ 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|
24
+ | Environment variable| Description| Default- Value|
25
25
| -------------------------------------| -----------------------------------------------------------------------| -----------------------------------------------------|
26
26
| ` LOWCODER_REDIS_ENABLED ` | If** true** redis server is started in the container| ` true ` |
27
27
| ` LOWCODER_MONGODB_ENABLED ` | If** true** mongo database is started in the container| ` true ` |
28
+ | ` LOWCODER_MONGODB_EXPOSED ` | If** true** mongo database accept connections from outside the docker| ` false ` |
28
29
| ` LOWCODER_API_SERVICE_ENABLED ` | If** true** lowcoder api-service is started in the container| ` true ` |
29
30
| ` LOWCODER_NODE_SERVICE_ENABLED ` | If** true** lowcoder node-service is started in the container| ` true ` |
30
31
| ` LOWCODER_FRONTEND_ENABLED ` | If** true** lowcoder web frontend is started in the container| ` true ` |
@@ -50,7 +51,12 @@ Image can be configured by setting environment variables.
50
51
| ` LOWCODER_CREATE_WORKSPACE_ON_SIGNUP ` | IF LOWCODER_WORKSPACE_MODE = SAAS, controls if a own workspace is created for the user after sign up| ` true ` |
51
52
| ` LOWCODER_MARKETPLACE_PRIVATE_MODE ` | Control if not to show Apps on the local Marketplace to anonymous users| ` true ` |
52
53
54
+ Also you should set the API-KEY secret, whcih should be a string of at least 32 random characters
55
+ On linux/mac, generate one eg. with: head /dev/urandom | head -c 30 | shasum -a 256
53
56
57
+ | Environment variable| Description| Default-Value|
58
+ | -------------------------------------| -----------------------------------------------------------------------| -----------------------------------------------------|
59
+ | ` LOWCODER_API_KEY_SECRET ` | String to encrypt/sign API Keys that users may create| |
54
60
55
61
56
62
##Building api-service image
@@ -69,7 +75,7 @@ DOCKER_BUILDKIT=1 docker build -f deploy/docker/Dockerfile -t lowcoderorg/lowcod
69
75
70
76
Image can be configured by setting environment variables.
71
77
72
- | Environment variable| Description| Value|
78
+ | Environment variable| Description| Default- Value|
73
79
| --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------|
74
80
| ` LOWCODER_PUID ` | ID of user running services. It will own all created logs and data.| ` 9001 ` |
75
81
| ` LOWCODER_PGID ` | ID of group of the user running services.| ` 9001 ` |
@@ -105,7 +111,7 @@ DOCKER_BUILDKIT=1 docker build -f deploy/docker/Dockerfile -t lowcoderorg/lowcod
105
111
106
112
Image can be configured by setting environment variables.
107
113
108
- | Environment variable| Description| Value|
114
+ | Environment variable| Description| Default- Value|
109
115
| --------------------------------| --------------------------------------------------------------------| -------------------------------------------------------|
110
116
| ` LOWCODER_PUID ` | ID of user running services. It will own all created logs and data.| ` 9001 ` |
111
117
| ` LOWCODER_PGID ` | ID of group of the user running services.| ` 9001 ` |
@@ -127,7 +133,7 @@ DOCKER_BUILDKIT=1 docker build -f deploy/docker/Dockerfile -t lowcoderorg/lowcod
127
133
128
134
Image can be configured by setting environment variables.
129
135
130
- | Environment variable| Description| Value|
136
+ | Environment variable| Description| Default- Value|
131
137
| --------------------------------| --------------------------------------------------------------------| -------------------------------------------------------|
132
138
| ` LOWCODER_PUID ` | ID of user running services. It will own all created logs and data.| ` 9001 ` |
133
139
| ` LOWCODER_PGID ` | ID of group of the user running services.| ` 9001 ` |