mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Merge branch 'main' into main
This commit is contained in:
@@ -59,7 +59,7 @@ config:
|
|||||||
env: []
|
env: []
|
||||||
mounts: []
|
mounts: []
|
||||||
```
|
```
|
||||||
4. Add the `meta.json` file to the folder
|
4. Add meta information to the `meta.json` file in the root folder
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
|
|||||||
33
blueprints/lowcoder/docker-compose.yml
Normal file
33
blueprints/lowcoder/docker-compose.yml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
## Start Lowcoder (all-in-one)
|
||||||
|
lowcoder-api-service:
|
||||||
|
image: lowcoderorg/lowcoder-ce:2.6.4
|
||||||
|
environment:
|
||||||
|
REDIS_ENABLED: "true"
|
||||||
|
MONGODB_ENABLED: "true"
|
||||||
|
API_SERVICE_ENABLED: "true"
|
||||||
|
NODE_SERVICE_ENABLED: "true"
|
||||||
|
FRONTEND_ENABLED: "true"
|
||||||
|
PUID: "1000"
|
||||||
|
PGID: "1000"
|
||||||
|
DEFAULT_ORGS_PER_USER: 100
|
||||||
|
DEFAULT_ORG_MEMBER_COUNT: 1000
|
||||||
|
DEFAULT_ORG_GROUP_COUNT: 100
|
||||||
|
DEFAULT_ORG_APP_COUNT: 1000
|
||||||
|
DEFAULT_DEVELOPER_COUNT: 50
|
||||||
|
MONGODB_URL: "mongodb://localhost:27017/lowcoder?authSource=admin"
|
||||||
|
REDIS_URL: "redis://localhost:6379"
|
||||||
|
ENABLE_USER_SIGN_UP: ${ENABLE_USER_SIGN_UP}
|
||||||
|
ENCRYPTION_PASSWORD: ${ENCRYPTION_PASSWORD}
|
||||||
|
ENCRYPTION_SALT: ${ENCRYPTION_SALT}
|
||||||
|
CORS_ALLOWED_DOMAINS: ${CORS_ALLOWED_DOMAINS}
|
||||||
|
LOWCODER_API_KEY_SECRET: ${LOWCODER_API_KEY_SECRET}
|
||||||
|
LOWCODER_API_SERVICE_URL: "http://localhost:8080"
|
||||||
|
LOWCODER_NODE_SERVICE_URL: "http://localhost:6060"
|
||||||
|
volumes:
|
||||||
|
- ../files/volumes/lowcoder-stacks:/lowcoder-stacks
|
||||||
|
restart: unless-stopped
|
||||||
|
expose:
|
||||||
|
- 3000
|
||||||
BIN
blueprints/lowcoder/lowcoder.png
Normal file
BIN
blueprints/lowcoder/lowcoder.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 KiB |
20
blueprints/lowcoder/template.yml
Normal file
20
blueprints/lowcoder/template.yml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
variables:
|
||||||
|
main_domain: ${domain}
|
||||||
|
encryption_password: ${password:32}
|
||||||
|
encryption_salt: ${password:32}
|
||||||
|
api_secret: ${password:32}
|
||||||
|
|
||||||
|
config:
|
||||||
|
domains:
|
||||||
|
- serviceName: lowcoder-api-service
|
||||||
|
port: 3000
|
||||||
|
host: ${main_domain}
|
||||||
|
|
||||||
|
env:
|
||||||
|
ENABLE_USER_SIGN_UP: "false"
|
||||||
|
ENCRYPTION_PASSWORD: ${encryption_password}
|
||||||
|
ENCRYPTION_SALT: ${encryption_salt}
|
||||||
|
CORS_ALLOWED_DOMAINS: "*"
|
||||||
|
LOWCODER_API_KEY_SECRET: ${api_secret}
|
||||||
|
|
||||||
|
mounts: []
|
||||||
Reference in New Issue
Block a user