-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.json
51 lines (51 loc) · 1.62 KB
/
settings.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"java.configuration.updateBuildConfiguration": "automatic",
"docker.commands.composeUp": [
{
"label": "default",
"template": "docker-compose -${configurationFile} up -d"
},
{
"label": "default - rebuild",
"template": "docker-compose ${configurationFile} up -d --build"
},
{
"label": "simpsons stack",
"template": "docker-compose -p simpsons -f examples/session2/servers-with-volume.yml up -d"
},
{
"label": "flanders stack",
"template": "docker-compose -p flanders -f examples/session2/servers-with-volume.yml up -d"
},
],
"docker.commands.composeDown": [
{
"label": "default",
"template": "docker-compose ${configurationFile} down"
},
{
"label": "simpsons stack",
"template": "docker-compose -p simpsons -f examples/session2/servers-with-volume.yml down"
},
{
"label": "flanders stack",
"template": "docker-compose -p flanders -f examples/session2/servers-with-volume.yml down"
},
],
"docker.commands.attach": [
{
"label": "default",
"template": "docker exec -it ${containerId} ${shellCommand}"
},
{
"label": "mysql session",
"template": "docker exec -it mydb mysql -u user --password=password --database=userdb"
},
],
}