From 3b71e34aa49b593e254caa3d52ef2d11cd0b63e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Tue, 7 Jun 2022 13:50:05 +0000 Subject: [PATCH 1/3] Remove gitpod config (needed no more) --- .gitpod.Dockerfile | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 .gitpod.Dockerfile diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile deleted file mode 100644 index a0a8e7a1f8..0000000000 --- a/.gitpod.Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -FROM gitpod/workspace-full - -RUN sudo apt update -RUN sudo add-apt-repository ppa:ondrej/php -y -# Disable current PHP installation -RUN sudo a2dismod php7.4 mpm_prefork - -# Install apache2 (PHP install requires to do this first) and php8.0 -RUN sudo install-packages \ - -o Dpkg::Options::="--force-confdef" \ - -o Dpkg::Options::="--force-confold" \ - apache2 php8.0 - From 7c578b38e6fd8410e333b6d7f4f2ab4196f11eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Tue, 7 Jun 2022 13:52:23 +0000 Subject: [PATCH 2/3] Remove gitpod reference --- .gitpod.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index c853781a99..7e700fc368 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,6 +1,3 @@ -image: - file: .gitpod.Dockerfile - tasks: - name: Run Appwrite Docker Stack init: | From 5b98547fe1f6557665483cc5f54edfcfebbef747 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Tue, 7 Jun 2022 14:00:20 +0000 Subject: [PATCH 3/3] Fix after testing --- .gitpod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 7e700fc368..dfc306c59f 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,8 +1,8 @@ tasks: - name: Run Appwrite Docker Stack init: | - docker-compose pull - docker-compose build + docker compose pull + docker compose build command: | docker run --rm --interactive --tty \ --volume $PWD:/app \