LogoLogo
Go to Syntho.AI
English
English
  • Welcome to Syntho
  • Overview
    • Get started
      • Syntho bootcamp
        • 1. What is Syntho?
        • 2. Introduction data anonymization
        • 3. Connectors & workspace creation
        • 4. PII scan
        • 5. Generators
          • Mockers
          • Maskers
          • AI synthesize
          • Calculated columns
          • Free text de-identification
        • 6. Referential integrity & foreign keys
        • 7. Workspace synchronization & validation
        • 8. Workspace & user management
        • 9. Large workloads​
        • 10. AI synthesis: Data pre-processing when using
      • Prerequisites
      • Sample datasets
      • Introduction to data generators
      • AI-generated synthetic data
    • Frequently asked questions
  • Setup Workspaces
    • View workspaces
    • Create a workspace
      • Connect to a database
        • PostgreSQL
        • MySQL / MariaDB
        • Oracle
        • Microsoft SQL Server
        • DB2
        • Databricks
          • Importing Data into Databricks
        • Hive
        • SAP Sybase
        • Azure Data Lake Storage (ADLS)
        • Amazon Simple Storage Service (S3)
      • Workspace modes
    • Edit a workspace
    • Duplicate a workspace
    • Transfer workspace ownership
    • Share a workspace
    • Delete a workspace
    • Workspace default settings
  • Configure a Data Generation Job
    • Configure table settings
    • Configure column settings
      • AI synthesize
        • Sequence model
          • Prepare your sequence data
        • QA report
        • Additional privacy controls
        • Cross-table relationships limitations
      • Mock
        • Text
          • Supported languages
        • Numeric (integer)
        • Numeric (decimal)
        • Datetime
        • Other
      • Mask
        • Text
        • Numeric (integer)
        • Numeric (decimal)
        • Datetime
        • UUID
      • Duplicate
      • Exclude
      • Consistent mapping
      • Calculated columns
      • Key generators
        • Differences between key generators
      • JSON de-identification
    • Manage personally identifiable information (PII)
      • Privacy dashboard
      • Discover and de-identify PII columns
        • Identify PII columns manually
        • Automatic PII discovery with PII scanner
      • Remove columns from PII list
      • Automatic PII discovery and de-identification in free text columns
      • Supported PII & PHI entities
    • Manage foreign keys
      • Foreign key inheritance
      • Add virtual foreign keys
        • Add virtual foreign keys
        • Use foreign key scanner
        • Import foreign keys via JSON
        • Export foreign keys via JSON
      • Delete foreign keys
    • Validate and synchronize workspace
    • View and adjust generation settings
  • Deploy Syntho
    • Introduction
      • Syntho architecture
      • Requirements
        • Requirements for Docker deployments
        • Requirements for Kubernetes deployments
      • Access Docker images
        • Online
        • Offline
    • Deploy Syntho using Docker
      • Preparations
      • Deploy using Docker Compose
      • Run the application
      • Manually saving logs
      • Updating the application
      • Backup
    • Deploy Syntho using Kubernetes
      • Preparations
      • Deploy Ray using Helm
        • Upgrading Ray CRDs
        • Troubleshooting
      • Deploy Syntho using Helm
      • Validate the deployment
      • Troubleshooting
      • Saving logs
      • Upgrading the applications
      • Backup
    • Manage users and access
      • Single Sign-On (SSO) in Azure
      • Manage admin users
      • Manage non-admin users
    • Logs and monitoring
      • Does Syntho collect any data?
      • Temporary data storage by application
  • Syntho API
    • Syntho REST API
Powered by GitBook
On this page
  • Updating the docker registry credentials and license key
  • Updating the application

Was this helpful?

  1. Deploy Syntho
  2. Deploy Syntho using Docker

Updating the application

This section will describe the upgrading steps that can be done for the Syntho Application when running in Docker Compose. There are a couple of steps that can be asked to do from the Syntho Team:

  • Upgrading to a newer application version

  • Updating the license key

  • Updating the Docker registry credentials

Updating the docker registry credentials and license key

To be able to pull the latest version of the Syntho Application, valid registry credentials need to be configured for Docker to be able to pull the image from our registry. If the credentials have expired, the following command can be run to register them again in Docker:

docker login -u <username-for-registry> -p <password-for-registry> syntho.azurecr.io

Generally when the registry credentials expire, the license key that has been provided for the deployment also need to be updated. This is saved as an environment variable in Docker Compose deployment, in the variable called SYNTHO_LICENSE.

To updated this, navigate and open the created .env file for the deployment and replace the value of SYNTHO_LICENSE with the provided license key.

SYNTHO_LICENSE=<new-license>

After doing this, make sure to restart the application using docker compose up -d.

Updating the application

The application can be updated by using different version tags in the defined docker images in Docker Compose. The following environment variables can be adjusted to achieve this:

RAY_IMAGE=syntho.azurecr.io/syntho-ray:<image-tag>
CORE_IMAGE=syntho.azurecr.io/syntho-core-api:<image-tag>
BACKEND_IMAGE=syntho.azurecr.io/syntho-core-backend:<image-tag>
FRONTEND_IMAGE=syntho.azurecr.io/syntho-core-frontend:<image-tag>

The Syntho team can provide the latest version. A rolling latest tag is also available, but not recommended for production deployment.

After the tags have been updated, please run docker compose up -d to download the new images and deploy them using docker compose.

PreviousManually saving logsNextBackup

Last updated 10 months ago

Was this helpful?