]> git.mxchange.org Git - friendica.git/commitdiff
try to keep mariadb alive
authorArt4 <art4@wlabs.de>
Wed, 6 Nov 2024 22:53:04 +0000 (22:53 +0000)
committerArt4 <art4@wlabs.de>
Wed, 6 Nov 2024 22:53:04 +0000 (22:53 +0000)
.github/workflows/php.yml

index d4747f06abf1eca17c5da90c975579482e5cf437..b67428a2522d8ab5c77e969fe4a3d3077b484a26 100644 (file)
@@ -9,11 +9,16 @@ jobs:
     services:
       mariadb:
         image: mariadb:latest
+        restart: always
         env:
           MYSQL_ALLOW_EMPTY_PASSWORD: true
           MYSQL_DATABASE: test
           MYSQL_PASSWORD: test
           MYSQL_USER: test
+        command:
+          - --max-allowed-packet=64M
+          - --wait-timeout=28800
+          - --interactive-timeout=28800
         ports:
           - 3306/tcp
         options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3