details:   https://code.tryton.org/communication/demo/commit/af6b799c7b6a
branch:    default
user:      Cédric Krier <[email protected]>
date:      Mon Dec 15 22:02:05 2025 +0100
description:
        Add 7.8 series
diffstat:

 docker-compose.yml |  51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

diffs (59 lines):

diff -r 7f18072afded -r af6b799c7b6a docker-compose.yml
--- a/docker-compose.yml        Sat Jul 19 23:53:18 2025 +0200
+++ b/docker-compose.yml        Mon Dec 15 22:02:05 2025 +0100
@@ -1,4 +1,55 @@
 services:
+    postgres-7.8:
+        build:
+          dockerfile: postgres-Dockerfile
+          context: .
+          args:
+            VERSION: "18"
+            SERIES: "7.8"
+            INITDB: "databases/7.8/database.sql"
+        image: tryton/postgres-demo:7.8
+        environment:
+            - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
+            - POSTGRES_DB=demo7.8
+        restart: unless-stopped
+    tryton-7.8:
+        build:
+            context: .
+            args:
+                SERIES: "7.8"
+        image: tryton/tryton-demo:7.8
+        env_file: 7.8.env
+        environment:
+            - DB_PASSWORD=${POSTGRES_PASSWORD}
+        ports:
+            - "127.7.8.1:8000:8000"
+        depends_on:
+          postgres-7.8:
+            condition: service_healthy
+        restart: unless-stopped
+    tryton-worker-7.8:
+        image: tryton/tryton-demo:7.8
+        env_file: 7.8.env
+        environment:
+            - DB_PASSWORD=${POSTGRES_PASSWORD}
+        command: trytond-worker -d demo7.8 -n 1
+        depends_on:
+          postgres-7.8:
+            condition: service_healthy
+        restart: unless-stopped
+    tryton-bus-7.8:
+        image: tryton/tryton-demo:7.8
+        env_file: 7.8.env
+        environment:
+            - DB_PASSWORD=${POSTGRES_PASSWORD}
+        command: trytond --coroutine
+        ports:
+            - "127.7.8.1:8001:8000"
+        depends_on:
+          postgres-7.8:
+            condition: service_healthy
+        restart: unless-stopped
+
     postgres-7.6:
         build:
           dockerfile: postgres-Dockerfile

Reply via email to