1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00

Merge pull request #3349 from appwrite/fix-gitpod-workspace

Fix: Gitpod workspace
This commit is contained in:
Christy Jacob 2022-06-08 22:02:58 +05:30 committed by GitHub
commit b5634d507b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 18 deletions

13
.gitpod.Dockerfile vendored
View file

@ -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

View file

@ -1,11 +1,8 @@
image:
file: .gitpod.Dockerfile
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 \