Files
2026-02-15 18:28:26 -08:00

25 lines
518 B
TOML

app = "flynn"
[build]
dockerfile = "Dockerfile"
[env]
# Persist state under /data (see volume mount below)
FLYNN_DATA_DIR = "/data"
# The Docker image ships /config/config.yaml (from config/paas.yaml).
# Override this if you mount your own config elsewhere.
FLYNN_CONFIG = "/config/config.yaml"
[http_service]
internal_port = 18800
force_https = true
auto_start_machines = true
auto_stop_machines = "stop"
min_machines_running = 0
[[mounts]]
source = "flynn_data"
destination = "/data"