-
Notifications
You must be signed in to change notification settings - Fork 1
/
yacht-template.json
43 lines (43 loc) · 1.12 KB
/
yacht-template.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
{
"type": 1,
"title": "Mail-To-Telegram",
"name": "mail-to-telegram",
"description": "SMTP Server for OpenMediaVault to forward notification emails to a Telegram Bot.",
"logo": "https://github.com/swip3798/mail-to-telegram-app/raw/master/logo.svg",
"image": "swip3798/mail-to-telegram:latest",
"note": "SMTP Server for OpenMediaVault to forward notification emails to a Telegram Bot.",
"categories": [
"SMTP",
"Mail",
"Notifications",
"OMV"
],
"platform": "linux",
"restart_policy": "unless-stopped",
"ports": [
{"SMTP": "17333:17333/tcp"}
],
"network_mode": "bridge",
"sysctls": [
{
"net.ipv6.conf.all.disable_ipv6": "0"
}
],
"cap_add": [
"NET_ADMIN"
],
"env": [
{
"name": "TELEGRAM_BOT_TOKEN",
"label": "Telegram Bot API Token"
},
{
"name": "ASYNC_STD_THREAD_COUNT",
"label": "Number of threads used by the server"
},
{
"name": "STANDARD_CHAT_ID",
"label": "Fallback chatid"
}
]
}