Skip to content

Commit 1c44f3a

Browse files
author
FalkWolsky
committed
Changing Readme for latest ENV Variables
1 parent 4f58b96 commit 1c44f3a

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

deploy/docker/README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ DOCKER_BUILDKIT=1 docker build -f deploy/docker/Dockerfile -t lowcoderorg/lowcod
2121

2222
Image can be configured by setting environment variables.
2323

24-
| Environment variable | Description | Value |
24+
| Environment variable | Description | Default-Value |
2525
|-------------------------------------| ----------------------------------------------------------------------- | ----------------------------------------------------- |
2626
| `LOWCODER_REDIS_ENABLED` | If **true** redis server is started in the container | `true` |
2727
| `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` |
2829
| `LOWCODER_API_SERVICE_ENABLED` | If **true** lowcoder api-service is started in the container | `true` |
2930
| `LOWCODER_NODE_SERVICE_ENABLED` | If **true** lowcoder node-service is started in the container | `true` |
3031
| `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.
5051
| `LOWCODER_CREATE_WORKSPACE_ON_SIGNUP` | IF LOWCODER_WORKSPACE_MODE = SAAS, controls if a own workspace is created for the user after sign up | `true` |
5152
| `LOWCODER_MARKETPLACE_PRIVATE_MODE` | Control if not to show Apps on the local Marketplace to anonymous users | `true` |
5253

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
5356

57+
| Environment variable | Description | Default-Value |
58+
|-------------------------------------| ----------------------------------------------------------------------- | ----------------------------------------------------- |
59+
| `LOWCODER_API_KEY_SECRET` | String to encrypt/sign API Keys that users may create | |
5460

5561

5662
## Building api-service image
@@ -69,7 +75,7 @@ DOCKER_BUILDKIT=1 docker build -f deploy/docker/Dockerfile -t lowcoderorg/lowcod
6975

7076
Image can be configured by setting environment variables.
7177

72-
| Environment variable | Description | Value |
78+
| Environment variable | Description | Default-Value |
7379
| --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------|
7480
| `LOWCODER_PUID` | ID of user running services. It will own all created logs and data. | `9001` |
7581
| `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
105111

106112
Image can be configured by setting environment variables.
107113

108-
| Environment variable | Description | Value |
114+
| Environment variable | Description | Default-Value |
109115
| --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------- |
110116
| `LOWCODER_PUID` | ID of user running services. It will own all created logs and data. | `9001` |
111117
| `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
127133

128134
Image can be configured by setting environment variables.
129135

130-
| Environment variable | Description | Value |
136+
| Environment variable | Description | Default-Value |
131137
| --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------- |
132138
| `LOWCODER_PUID` | ID of user running services. It will own all created logs and data. | `9001` |
133139
| `LOWCODER_PGID` | ID of group of the user running services. | `9001` |

0 commit comments

Comments
 (0)