-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.25 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
33
34
{
"name": "WebMediaSolutionZ",
"version": "1.0.0",
"description": "Dockerized Wordpress application for Web Media Solutionz",
"main": "index.js",
"scripts": {
"start": "docker-compose up -d",
"stop": "docker-compose down",
"build": "docker build -t max2wms/wms .",
"build:up": "docker-compose -f docker-compose.build.yml up --build",
"build:down": "docker-compose -f docker-compose.build.yml down",
"prod:up": "docker-compose -f docker-compose.prod.yml up -d",
"prod:down": "docker-compose -f docker-compose.prod.yml down",
"swarm:init": "docker swarm init",
"swarm:init:addr": "docker swarm init --advertise-addr 67.205.190.101",
"swarm:leave": "docker swarm leave --force",
"swarm:up": "docker stack deploy -c docker-compose.stack.yml wms",
"swarm:down": "docker stack rm wms",
"swarm:deploy": "./scripts/deploy-prod.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/max2-wms/WebMediaSolutionZ.git"
},
"author": "Maxime Pierre <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/max2-wms/WebMediaSolutionZ/issues"
},
"homepage": "https://github.com/max2-wms/WebMediaSolutionZ#readme",
"devDependencies": {
"husky": "^8.0.1"
}
}