-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.json
More file actions
32 lines (32 loc) · 865 Bytes
/
Copy pathproject.json
File metadata and controls
32 lines (32 loc) · 865 Bytes
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
{
"name": "mailpit",
"implicitDependencies": ["networks", "traefik"],
"targets": {
"create-volumes": {
"options": {
"volumes": [{ "name": "mailpit-data", "userId": 65023 }]
}
},
"create-variables": {
"options": {
"variables": [
{
"name": "MAILPIT_DOMAIN",
"description": "Public domain name for Mailpit.",
"defaultValue": "mailpit.${DEFAULT_DOMAIN_SUFFIX}"
},
{
"name": "MAILPIT_UI_USER",
"description": "Username used to log into the Mailpit web UI and API.",
"defaultValue": "admin"
},
{
"name": "MAILPIT_UI_PASSWORD",
"description": "Password used to log into the Mailpit web UI and API.",
"type": "generated"
}
]
}
}
}
}