-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.gitpod.yml
38 lines (32 loc) · 807 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
image: gitpod/workspace-full:2024-04-16-12-16-24
tasks:
- name: Nextcloud Server
#init: |
# cd gitpod
# docker-compose pull
# cd ..
command: |
git config core.fileMode false
sudo chown -R www-data:www-data .
sudo chmod -R 777 .
cd gitpod
docker-compose up
- name: Dependency install and Frontend
init: |
curl -sS https://getcomposer.org/installer -o ~/composer-setup.php
sudo php ~/composer-setup.php --install-dir=/bin --filename=composer
composer --version
make dev-setup
command: make watch-js
- name: Terminal
command: clear
ports:
- port: 8080
onOpen: open-browser
visibility: private
- port: 8081
visibility: private
onOpen: ignore
vscode:
extensions:
- johnsoncodehk.volar