feat(deploy): add PaaS templates and config

This commit is contained in:
William Valentin
2026-02-15 18:28:26 -08:00
parent 2177413833
commit 8d0016fd32
10 changed files with 205 additions and 3 deletions
+24
View File
@@ -0,0 +1,24 @@
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"