From 026714bb8420f2455e7741480997404c6e50f80c Mon Sep 17 00:00:00 2001 From: satoru Date: Wed, 25 Jan 2023 00:42:36 +0800 Subject: [PATCH] Update fly.io instructions in readme [skip ci] (#936) Add instruction on fixing the fly.toml before deploying --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index c4abaf6..24b5791 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,9 @@ flyctl auth login flyctl launch --image benbusby/whoogle-search:latest ``` +The first deploy won't succeed because the default `internal_port` is wrong. +To fix this, open the generated `fly.toml` file, set `services.internal_port` to `5000` and run `flyctl launch` again. + Your app is now available at `https://.fly.dev`. ___