For the complete documentation index, see llms.txt. This page is also available as Markdown.

On-Premise Deployment

How to deploy a Servoy Cloud application on your own infrastructure using Docker — including configuration parameters, environment variables, and connecting to Servoy Cloud.

What was previously called "Remote (On-Premise)" is now called Satellite as of the 2026.03 release. This is a label-only change — no configuration or behavior has changed.

When to use Satellite deployment

A Satellite deployment makes sense when your data or infrastructure requirements mean you cannot run in the cloud — for example due to data residency regulations, network restrictions, or existing on-premise infrastructure investments. Your application runs on your own servers, but remains connected to and managed through Servoy Cloud.

Docker deployment

1. CCC Configuration Parameters

Command parameters

Command parameters are accessible via the Docker Information dialog within the Cloud Control Center. You can access this dialog from the following locations:

  • Current Package context menu in the Pipelines view

  • Artifacts tab in the Package Details

Parameter names:

  • namespace-name

  • region-name

  • docker-repo-name

AWS Parameters

Access AWS parameters through the Credentials menu in the Cloud Control Center, including:

  • AWS Access Key ID

  • AWS Secret Access Key

Remote Environment Token

To view Satellite environment metrics in Servoy Cloud, the Remote Environment token is required. This token connects to Servoy Cloud and synchronizes environment metrics like logs and performance data for analysis in the Cloud Control Center.

To obtain the Remote Environment token, navigate to the Credentials menu in the Cloud Control Center.

2. Pre-requisites

  • Docker

  • AWS CLI

3. Install requirements

Installation Commands

4. Configuration settings

Linux and Mac

Windows

General

Edit the config.json file, adding other configuration settings:

5. Pull docker image

To pull the Docker image, execute the following commands:

For Authentication

Generate a login password for Amazon ECR:

Pull Command

Fetch the specific Docker image using:

6. Running the docker image

To run the docker image the basic call is:

In this sample it is running connected to a postgres server, the following -e options can be used when you are starting your docker container:

Docker Env Property
Default value
Description

TOMCAT_USERNAME

admin

Tomcat username

TOMCAT_PASSWORD

Test123456789

Tomcat Password

JAVA_XMS

256m

Java min memory setting for tomcat

JAVA_XMX

3g

Java max memory setting for tomcat

CERTIFICATE_NAME

Certificate file name to use tomcat with SSL

CERTIFICATE_PASS

Certificate file password to load the certificate file

DB_POSTGRES_SERVER

dev-postgresql-service

Postgres Server URL

DB_POSTGRES_USERNAME

postgres

Postgres Username

DB_POSTGRES_PASSWORD

Postgres Password

DB_POSTGRES_PORT

5432

Postgres Port

DB_MSSQL_SERVER

dev-mssql-service

MSSQL Server URL

DB_MSSQL_USERNAME

sa

MSSQL Username

DB_MSSQL_PASSWORD

MSSQL Password

DB_MSSQL_PORT

1433

MSSQL Port

DB_MYSQL_SERVER

dev-mysql-service

MYSQL Server URL

DB_MYSQL_USERNAME

root

MYSQL Username

DB_MYSQL_PASSWORD

MYSQL Password

DB_MYSQL_PORT

3306

MYSQL Port

SERVOY_TESTING_MODE

false

Property to enable servoy E2E testing

REMOTE_ENVIRONMENT_TOKEN

Remote Environment Token, accessible from Credentials menu in CCC

TIMEZONE

Etc/UTC

Set the timezone of the Servoy Application Server

When using CERTIFICATE_NAME & CERTIFICATE_PASS you should create an extra volume map the certificate folder -v ${MY_CERTS}:/usr/local/servoy-certificate

Last updated

Was this helpful?