forked from lbngoc/php-docker-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (30 loc) · 1.14 KB
/
package.json
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
{
"name": "php-docker-dev",
"version": "1.0.0",
"description": "A simple Docker based development environment for PHP",
"main": "index.js",
"scripts": {
"setup-wordpress": "docker-compose run --rm --user \"1000:1000\" phpfpm /docker/bin/setup-wp.sh",
"setup-bedrock": "docker-compose run --rm --user \"1000:1000\" phpfpm /docker/bin/setup-bedrock.sh && ./bin/setup-bedrock.sh --update-root",
"mysql-backup": "docker-compose exec --user \"1000:1000\" phpfpm /docker/bin/mysql-backup.sh",
"mysql-restore": "docker-compose exec --user \"1000:1000\" phpfpm /docker/bin/mysql-restore.sh",
"ssh": "docker-compose exec --user \"1000:1000\" phpfpm bash",
"ssh-root": "docker-compose exec --user root phpfpm bash",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lbngoc/php-docker-dev.git"
},
"keywords": [
"docker",
"php",
"environment"
],
"author": "Ngoc Luong-Bao",
"license": "ISC",
"bugs": {
"url": "https://github.com/lbngoc/php-docker-dev/issues"
},
"homepage": "https://github.com/lbngoc/php-docker-dev#readme"
}