-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 732 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "docker",
"version": "1.0.0",
"description": "Example of two services talking over a socket.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "docker-compose build",
"logs:foo": "docker-compose logs -f foo || true",
"logs:bar": "docker-compose logs -f bar || true",
"up": "docker-compose up -d",
"down": "docker-compose down",
"exec:foo": "docker-compose exec foo /bin/bash",
"exec:bar": "docker-compose exec bar /bin/bash"
},
"author": "Krister Andersson <cyclonecode@gmail.com>",
"license": "GPL-3.0-or-later",
"repository": "git@github.com:Cyclonecode/container-talk.git",
"dependencies": {
"chalk": "^4.1.0"
}
}