From fefc51ccf10ee7e0e7b0d6124ecf9789a97d83ce Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 6 Jul 2023 14:51:50 +1000 Subject: [PATCH] Fixes for package discovery --- alpine/5/Dockerfile | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine/5/Dockerfile b/alpine/5/Dockerfile index 3826a6c..40bd1e5 100644 --- a/alpine/5/Dockerfile +++ b/alpine/5/Dockerfile @@ -102,7 +102,7 @@ WORKDIR /var/www/app # Do not remove this ENV ENV IS_DOCKER true -RUN /usr/local/bin/composer install --no-dev +RUN /usr/local/bin/composer install --no-dev --quiet # Override the environment settings from projects .env file ENV APP_ENV production diff --git a/docker-compose.yml b/docker-compose.yml index d4be41d..b4c94e6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -41,7 +41,7 @@ services: - "in5.localhost:192.168.0.124 " #host and ip db: - image: mariadb:10.6 + image: mysql:8 # When running on ARM64 use MariaDB instead of MySQL # image: mariadb:10.4 # For auto DB backups comment out image and use the build block below