-
Notifications
You must be signed in to change notification settings - Fork 2
/
fly.toml
50 lines (39 loc) · 864 Bytes
/
fly.toml
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
kill_signal = "SIGINT"
kill_timeout = 30
[build]
image = "ghcr.io/singlestore-labs/singlestoredb-dev"
[env]
SINGLESTORE_SET_GLOBAL_DEFAULT_PARTITIONS_PER_LEAF = 1
[mounts]
destination = "/data"
source = "singlestoredb_data"
[[services]]
internal_port = 3306
protocol = "tcp"
[[services.ports]]
port = 3306
[[services]]
internal_port = 8080
protocol = "tcp"
[[services.ports]]
force_https = true
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443
[[services]]
internal_port = 9000
protocol = "tcp"
[[services.http_checks]]
grace_period = "30s"
interval = 10000
method = "get"
path = "/ping"
protocol = "http"
restart_limit = 0
timeout = 2000
tls_skip_verify = false
[[services.ports]]
handlers = ["tls", "http"]
port = 9000