Compare commits

..

5 commits

7 changed files with 12114 additions and 33 deletions

View file

@ -3,6 +3,7 @@
"dockerComposeFile": "docker-compose.yml",
"service": "silverstripe",
"workspaceFolder": "/shared-workspaces/mantra",
"remoteUser": "vscode",
"extensions": [
"adrianhumphreys.silverstripe",
"bmewburn.vscode-intelephense-client",

View file

@ -2,7 +2,9 @@ version: '3'
services:
silverstripe:
image: manuth/silverstripe-dev
build:
context: .
dockerfile: web.Dockerfile
env_file: devcontainer.env
environment:
- SS_ENVIRONMENT_TYPE=dev

View file

@ -1,6 +1,4 @@
#!/bin/bash
echo '* text=auto eol=lf' > $(git rev-parse --git-dir)/info/attributes
rm -rf /var/www/html
ln -sT `pwd`/test/website /var/www/html
chown -R www-data:www-data ./test/website
chown -R www-data:www-data /var/www/html
sudo rm -rf /var/www/html
sudo ln -sT $(pwd)/test/website /var/www/html

View file

@ -0,0 +1,10 @@
FROM manuth/silverstripe-dev
RUN apt-get update && \
apt-get -y install sudo && \
rm -rf /var/lib/apt/lists/*
RUN adduser --disabled-password --gecos '' vscode && \
sed -i /etc/sudoers -re 's/^%sudo.*/%sudo ALL=(ALL:ALL) NOPASSWD: ALL/g' && \
sed -i /etc/sudoers -re 's/^root.*/root ALL=(ALL:ALL) NOPASSWD: ALL/g' && \
echo 'vscode ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers

View file

@ -84,5 +84,10 @@
"composer --working-dir=./test/website install"
]
}
},
"config": {
"allow-plugins": {
"neronmoon/scriptsdev": true
}
}
}

12114
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -42,7 +42,12 @@
]
},
"config": {
"process-timeout": 600
"process-timeout": 600,
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
}
},
"prefer-stable": true,
"minimum-stability": "dev"