forked from ESDLMapEditorESSIM/energysystem_statistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
16 lines (16 loc) · 877 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "es-statistics-service",
"version": "0.0.1",
"description": "Energy System Statistics service",
"author": "Edwin Matthijssen <[email protected]>",
"license": "MIT",
"scripts": {
"docker:build": "docker build -t es-statistics-service .",
"docker:tag": "docker tag es-statistics-service 127.0.0.1:5000/es-statistics-service",
"docker:publish": "docker push 127.0.0.1:5000/es-statistics-service",
"docker:remove": "docker service rm es-statistics-service",
"docker:deploy": "docker service create --name es-statistics-service -p 6003:6003 127.0.0.1:5000/es-statistics-service",
"docker": "npm run docker:build && npm run docker:tag && npm run docker:publish && npm run docker:remove && npm run docker:deploy",
"docker1": "npm run docker:build && npm run docker:tag && npm run docker:publish && npm run docker:deploy"
}
}