lowcoderorg/lowcoder-ce-api-service
Create software applications for your Company and your Customers with minimal coding experience.
10K+
Create software applications (internal and customer-facing!) and Meeting/Collaboration tools for your Company and your Customers with minimal coding experience.
Lowcoder wants to take a step forward. More specifically, Lowcoder is:
Visual UI builder with 50+ built-in components. Save 90% of time to build apps.
Modules for reusable (!) component sets in the UI builder.
Embed Lowcoder Apps as native parts of any Website instead of iFrame (!). Demo
Video Meeting Components to create your own individual Web-Meeting tool.
Query Library for reusable data queries of your data sources.
Custom components to develop own components and use them in the UI builder.
Native Data connections to PostgreSQL, MongoDB, MySQL, Redis, Elasticsearch, REST API, SMTP, etc.
Stream Data connections to Websockets for realtime data updates & collaboration
JavaScript supported everywhere to transform data, control components, etc.
Role-based access control (RBAC) for granular permission management.
Auto-saved and restorable history for release and version control.
App Themes and Theme Editor to precisely align with your company's brand guidelines.
Self Hosting to use Lowcoder in your internal company network, even behind the firewall.
Free Community Cloud to start within a minute and build your first Apps. Start here
If you have any questions, please feel free to contact us or share them with our community. Our team is here ready to help. And we mean it... Day by day!
📮 Best way is to chat with us on Discord
📑 Search for solutions in our Documentation
🔎 Submit an issue here on GitHub
This image contains the central Java Backend (API) Service, which is needed to run Lowcoder platform in a multi-image setup. You can scale the API-Service independently, as the state is managed via Redis. Please also have a look to the docker-compose file. The API Service needs the "Node-Service", a MongoDB as central data store and a redis for state handling in bigger infrastructure installations.
The Image can be configured by setting environment variables.
Environment variable | Description | Value |
---|---|---|
LOWCODER_PUID | ID of user running services. It will own all created logs and data. | 9001 |
LOWCODER_PGID | ID of group of the user running services. | 9001 |
LOWCODER_MONGODB_URL | Mongo database connection string | mongodb://localhost:27017/lowcoder?authSource=admin |
LOWCODER_REDIS_URL | Redis server URL | redis://localhost:6379 |
LOWCODER_DB_ENCRYPTION_PASSWORD | Encryption password | lowcoder.org |
LOWCODER_DB_ENCRYPTION_SALT | Salt used for encrypting password | lowcoder.org |
LOWCODER_CORS_DOMAINS | CORS allowed domains | * |
LOWCODER_MAX_ORGS_PER_USER | Default maximum organizations per user | 100 |
LOWCODER_MAX_MEMBERS_PER_ORG | Default maximum members per organization | 1000 |
LOWCODER_MAX_GROUPS_PER_ORG | Default maximum groups per organization | 100 |
LOWCODER_MAX_APPS_PER_ORG | Default maximum applications per organization | 1000 |
LOWCODER_MAX_DEVELOPERS | Default maximum developers | 100 |
LOWCODER_MAX_QUERY_TIMEOUT | Lowcoder max query timeout (in seconds) | 120 |
LOWCODER_MAX_REQUEST_SIZE | Lowcoder max request size | 20m |
LOWCODER_WORKSPACE_MODE | SAAS to activate, ENTERPRISE to switch off - Workspaces | SAAS |
LOWCODER_EMAIL_SIGNUP_ENABLED | Control is users can create their own Workspace when Sign Up | true |
LOWCODER_EMAIL_AUTH_ENABLED | Control to show the eMail Login after Admin user is set | true |
docker pull lowcoderorg/lowcoder-ce-api-service