diff NewTests/PostgresUpgrades/docker-compose.yml @ 601:3e15e950c462

new transfer tests in the concurrency section
author Alain Mazy <am@osimis.io>
date Fri, 19 Jan 2024 15:03:47 +0100
parents f3475c3e42e5
children a5882a40ccb6
line wrap: on
line diff
--- a/NewTests/PostgresUpgrades/docker-compose.yml	Fri Jan 19 09:15:57 2024 +0100
+++ b/NewTests/PostgresUpgrades/docker-compose.yml	Fri Jan 19 15:03:47 2024 +0100
@@ -26,10 +26,8 @@
     volumes: ["storage-orthanc-pg-15:/var/lib/orthanc/db"]
     environment:
       VERBOSE_ENABLED: "true"
-      PG_HOST: "pg-15"
-      PG_LOCK: "false"
-      PG_INDEX_ENABLED: "true"
-      AC_AUTHENTICATION_ENABLED: "false"
+      ORTHANC__POSTGRESQL__HOST: "pg-15"
+      ORTHANC__AUTHENTICATION_ENABLED: "false"
 
   # Orthanc previous version to run the integration tests
   orthanc-pg-15-61-for-integ-tests:
@@ -46,10 +44,8 @@
 
     environment:
       VERBOSE_ENABLED: "true"
-      PG_HOST: "pg-15"
-      PG_LOCK: "false"
-      PG_INDEX_ENABLED: "true"
-      AC_AUTHENTICATION_ENABLED: "false"
+      ORTHANC__POSTGRESQL__HOST: "pg-15"
+      ORTHANC__AUTHENTICATION_ENABLED: "false"
 
   orthanc-tests:
     image: jodogne/orthanc-tests
@@ -72,19 +68,18 @@
     volumes: ["storage-orthanc-pg-15:/var/lib/orthanc/db"]
     environment:
       VERBOSE_ENABLED: "true"
-      ORTHANC__AUTHENTICATION_ENABLED: "false"
       ORTHANC__POSTGRESQL: |
         {
           "Host": "pg-15",
           "TransactionMode": "READ COMMITTED"
         }
+      ORTHANC__AUTHENTICATION_ENABLED: "false"
 
 
   pg-15:
     image: postgres:15
     container_name: pg-15
     restart: unless-stopped
-    ports: ["5439:5432"]
     volumes: 
       - "storage-pg-15:/var/lib/postgresql/data"
       - "./downgrade.sh:/scripts/downgrade.sh"
@@ -108,19 +103,18 @@
     volumes: ["storage-orthanc-pg-9:/var/lib/orthanc/db"]
     environment:
       VERBOSE_ENABLED: "true"
-      ORTHANC__AUTHENTICATION_ENABLED: "false"
       ORTHANC__POSTGRESQL: |
         {
           "Host": "pg-9",
           "TransactionMode": "READ COMMITTED"
         }
+      ORTHANC__AUTHENTICATION_ENABLED: "false"
 
 
   pg-9:
     image: postgres:9.5
     container_name: pg-9
     restart: unless-stopped
-    ports: ["5440:5432"]
     volumes: ["storage-pg-9:/var/lib/postgresql/data"]
     environment:
       POSTGRES_HOST_AUTH_METHOD: "trust"