Skip to content

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

Using an External Database

Tier: Server

It is possible to use your own external database with Stirling PDF rather than the default H2 database if you wish. PostgreSQL is currently the only supported variant, others will be added on request.

Setting Up External Database Configuration

You can configure the new Datasource property in your settings.yml to connect to your external database:

⚠️ Note

To use the external database feature, you will need to have a valid enterprise license and set the environment variable DISABLE_ADDITIONAL_FEATURES to false.

  datasource:
    enableCustomDatabase: false
    customDatabackendUrl: jdbc:postgresql://localhost:5432/postgres
    username: postgres
    password: postgres
    type: postgresql
    hostName: localhost
    port: 5432
    name: postgres
  • enableCustomDatabase: Set this property to true to enable use of the custom database Note: An enterprise license to use this feature
  • customDatabackendUrl: Enter the database connection url for the database here. Note: If you set the customDatabackendUrl you do not need to set the type, hostName, port and name, they will all be automatically derived from the url.
  • username: The username for the database
  • password: The password for the database

If you would like more fine-grained control of the database connection, you can also use the following properties:

Fine-grained Database Configuration

  • type: The database type. Available options are h2 and postgresql
  • hostName: The host name of the database connection url (e.g. 'localhost')
  • port: The port number of the database connection url (e.g. 8080)
  • name: The name of the custom database. This should match the name you have set for your database

services:
  db:
    image: 'postgres:17.2-alpine'
    container_name: db
    ports:
      - "5432:5432"
    environment:
      POSTGRES_DB: "stirling_pdf"
      POSTGRES_USER: "admin"
      POSTGRES_PASSWORD: "stirling"
  • container_name: This is the name of your database container. This should match the name of the container under services as this is what Docker will use to refer to your database
  • ports: Specify the port number for your database. The number on the left is the port number the container will access the database internally. The number on the right is the port number the Stirling PDF app will use to connect to the database externally. Ensure this matches the port number in the connection url for your database otherwise the app will not be able to access it.
  • POSTGRES_DB: An environment variable for the database container. Specify the name of the custom database here
  • POSTGRES_USER: An environment variable for the database container. Specify the username for the database
  • POSTGRES_PASSWORD: An environment variable for the database container. Specify the password for the database

You will also need to update the Docker configuration in your app in order to connect to the database:

services:
  stirling-pdf:
    depends_on:
      - db
    environment:
      DISABLE_ADDITIONAL_FEATURES: "false" "true"
      SYSTEM_DATASOURCE_ENABLECUSTOMDATABASE: "true"
      SYSTEM_DATASOURCE_CUSTOMDATABACKENDURL: "jdbc:postgresql://db:5432/stirling_pdf"
      SYSTEM_DATASOURCE_USERNAME: "admin"
      SYSTEM_DATASOURCE_PASSWORD: "stirling"
    # further configuration
  • depends_on: This specifies any services that your app will need in order to run. Ensure the name matches the container name for your database
  • DISABLE_ADDITIONAL_FEATURES: Set this to false to enable security features
  • SYSTEM_DATASOURCE_ENABLECUSTOMDATABASE: An environment variable to connect to the database container. Set this to true to enable use of the external database
  • SYSTEM_DATASOURCE_CUSTOMDATABACKENDURL: An environment variable to connect to the database container. Set the connection url for the database here. Note: If you set this url you do not need to set the type, hostName, port and name (namely SYSTEM_DATASOURCE_TYPE, SYSTEM_DATASOURCE_HOSTNAME, SYSTEM_DATASOURCE_PORT, SYSTEM_DATASOURCE_NAME), they will all be automatically derived from the url.
  • SYSTEM_DATASOURCE_USERNAME: An environment variable to connect to the database container. Set the username for the database. Ensure this matches the corresponding property in your database container
  • SYSTEM_DATASOURCE_PASSWORD: An environment variable to connect to the database container. Set the password for the database. Ensure this matches the corresponding property in your database container

Below is an example of what your configuration should look like after configuring the custom database:

services:
  stirling-pdf:
    depends_on:
      - db
    environment:
      DISABLE_ADDITIONAL_FEATURES: "false" "true"
      SYSTEM_DATASOURCE_ENABLECUSTOMDATABASE: "true"
      SYSTEM_DATASOURCE_CUSTOMDATABACKENDURL: "jdbc:postgresql://db:5432/stirling_pdf"
      SYSTEM_DATASOURCE_USERNAME: "admin"
      SYSTEM_DATASOURCE_PASSWORD: "stirling"
    # further configuration

  db:
    image: 'postgres:17.2-alpine'
    container_name: db
    ports:
      - "5432:5432"
    environment:
      POSTGRES_DB: "stirling_pdf"
      POSTGRES_USER: "admin"
      POSTGRES_PASSWORD: "stirling"

Example configuration can be found in exampleYmlFiles/docker-compose-latest-fat-security-postgres.yml