From 844b9e63c51086adf2730915f7550b6ba0c7da66 Mon Sep 17 00:00:00 2001 From: Arne Tarara Date: Fri, 10 May 2024 14:47:17 +0200 Subject: [PATCH] Using original Dockerfiles now directly since GMT can now use out of folder context --- energy-tests/compose-fpm-mariadb.yml | 4 +++- energy-tests/compose-mariadb.yml | 3 ++- energy-tests/compose-postgres.yml | 3 ++- energy-tests/compose-sqlite.yml | 3 ++- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/energy-tests/compose-fpm-mariadb.yml b/energy-tests/compose-fpm-mariadb.yml index f25e0bab..b839a47e 100644 --- a/energy-tests/compose-fpm-mariadb.yml +++ b/energy-tests/compose-fpm-mariadb.yml @@ -18,7 +18,9 @@ services: - MYSQL_USER=nextcloud app: - image: nextcloud:28.0.3-fpm + build: + context: ../29/fpm + dockerfile: Dockerfile restart: always links: - db diff --git a/energy-tests/compose-mariadb.yml b/energy-tests/compose-mariadb.yml index f99a524b..a4671347 100644 --- a/energy-tests/compose-mariadb.yml +++ b/energy-tests/compose-mariadb.yml @@ -18,7 +18,8 @@ services: - MYSQL_USER=nextcloud nc: - image: nextcloud:28.0.3-apache + build: + context: ../29/apache restart: always ports: - 8080:80 diff --git a/energy-tests/compose-postgres.yml b/energy-tests/compose-postgres.yml index b39adbcb..d6a4f2e2 100644 --- a/energy-tests/compose-postgres.yml +++ b/energy-tests/compose-postgres.yml @@ -16,7 +16,8 @@ services: - POSTGRES_USER=nextcloud nc: - image: nextcloud:28.0.3-apache + build: + context: ../29/apache restart: always ports: - 8080:80 diff --git a/energy-tests/compose-sqlite.yml b/energy-tests/compose-sqlite.yml index 2c1907f7..09f6a2c4 100644 --- a/energy-tests/compose-sqlite.yml +++ b/energy-tests/compose-sqlite.yml @@ -2,7 +2,8 @@ version: '2' services: nc: - image: nextcloud:28.0.3-apache + build: + context: ../29/apache restart: always ports: - 8080:80