Skip to content

Instantly share code, notes, and snippets.

@iwanhae
Created August 11, 2023 08:45
Show Gist options
  • Save iwanhae/d8b9da48b0a857330c55425f37b8fae8 to your computer and use it in GitHub Desktop.
Save iwanhae/d8b9da48b0a857330c55425f37b8fae8 to your computer and use it in GitHub Desktop.
deploy wiki.js to fly.io
# fly.toml app configuration file generated for iwanhae on 2023-08-09T14:02:50+09:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = "iwanhae"
primary_region = "nrt"
swap_size_mb = 1024
[build]
image = "ghcr.io/requarks/wiki:2"
[env]
DB_FILEPATH = "/wiki/data/db.sqlite"
DB_TYPE = "sqlite"
LANG = "en_US.utf8"
[[mounts]]
source = "wiki_data"
destination = "/wiki/data"
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
processes = ["app"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment