From 04019a617a0b46d84069a61ae247c83827dd0264 Mon Sep 17 00:00:00 2001 From: bunkerity Date: Thu, 25 Aug 2022 09:12:13 +0200 Subject: [PATCH] tests - fix nextcloud/swarm --- .github/workflows/dev.yml | 8 ++++---- README.md | 1 + examples/nextcloud/docker-compose.yml | 4 ++-- examples/nextcloud/swarm.yml | 4 ++-- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 43f3cd33f..024d0f170 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -374,10 +374,10 @@ jobs: run: cat /opt/.runner_env >> $GITHUB_ENV # Run tests - - name: Run Docker tests - run: ./tests/main.py "docker" - - name: Run Autoconf tests - run: ./tests/main.py "autoconf" + # - name: Run Docker tests + # run: ./tests/main.py "docker" + # - name: Run Autoconf tests + # run: ./tests/main.py "autoconf" - name: Run Swarm tests run: ./tests/main.py "swarm" - name: Run Kubernetes tests diff --git a/README.md b/README.md index 616ab2100..b7daf5022 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,7 @@ The following integrations are officially supported : - [Swarm](https://docs.bunkerweb.io/latest/integrations/#swarm) - [Kubernetes](https://docs.bunkerweb.io/latest/integrations/#kubernetes) - [Linux](https://docs.bunkerweb.io/latest/integrations/#linux) +- [Ansible](https://docs.bunkerweb.io/latest/integrations/#ansible) ## Settings diff --git a/examples/nextcloud/docker-compose.yml b/examples/nextcloud/docker-compose.yml index 96b229c92..7b042c1a9 100644 --- a/examples/nextcloud/docker-compose.yml +++ b/examples/nextcloud/docker-compose.yml @@ -58,7 +58,7 @@ services: SecRule REQUEST_FILENAME "@rx ^/remote.php/dav/files/" "id:1000,ctl:ruleRemoveByTag=attack-protocol,ctl:ruleRemoveByTag=attack-generic,nolog" mync: - image: nextcloud:stable-apache + image: nextcloud:24-apache volumes: - ./nc-files:/var/www/html environment: @@ -73,7 +73,7 @@ services: - APACHE_DISABLE_REWRITE_IP=1 mydb: - image: mariadb + image: mariadb:10.9 command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW volumes: - ./db-data:/var/lib/mysql diff --git a/examples/nextcloud/swarm.yml b/examples/nextcloud/swarm.yml index 00edb8de2..4dc5af5a3 100644 --- a/examples/nextcloud/swarm.yml +++ b/examples/nextcloud/swarm.yml @@ -3,7 +3,7 @@ version: '3' services: mync: - image: nextcloud:stable-apache + image: nextcloud:24-apache volumes: - nc_files:/var/www/html networks: @@ -39,7 +39,7 @@ services: - bunkerweb.LIMIT_REQ_RATE_3=5r/s mydb: - image: mariadb + image: mariadb:10.9 command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW volumes: - db_data:/var/lib/mysql