-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 882 Bytes
/
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
{
"name": "@jswork/docker-zblog",
"version": "1.0.0",
"description": "Zblog in docker.",
"homepage": "https://js.work",
"author": {
"name": "afeiship",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"docker-app:build": "docker build -t zblog:v1 -f Dockerfile .",
"docker-app:run": "docker run zblog:v1",
"docker-compose:exec": "docker exec -it docker-zblog_web_1 /bin/sh",
"docker-compose:build": "docker-compose build",
"docker-compose:start": "docker-compose up -d",
"docker-compose:stop": "docker-compose down",
"docker-compose:status": "docker-compose ps",
"docker-compose:restart": "docker-compose down && docker-compose up -d"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/afeiship/docker-zblog.git"
}
}