-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathfly.toml
More file actions
37 lines (30 loc) · 855 Bytes
/
Copy pathfly.toml
File metadata and controls
37 lines (30 loc) · 855 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
33
34
35
36
37
# Your app's identity — uncomment and set after `fly apps create` (see README → Deploy),
# then commit. Every fly command and data script in this checkout targets this app.
# app = "my-site"
# Pick a region near you: https://fly.io/docs/reference/regions/
primary_region = "fra"
[build]
dockerfile = "Dockerfile"
[env]
DATA_DIR = "/data"
PROTOCOL_HEADER = "fly-forwarded-proto"
[deploy]
strategy = "immediate"
[[vm]]
size = "shared-cpu-1x"
memory = "256mb"
[mounts]
source = "data"
destination = "/data"
initial_size = "1GB"
auto_extend_size_threshold = 80
auto_extend_size_increment = "1GB"
auto_extend_size_limit = "5GB"
[http_service]
internal_port = 3000
force_https = true
auto_start_machines = true
auto_stop_machines = "suspend"
min_machines_running = 0
max_machines_running = 1
processes = ["app"]